From 70c43a276c66ae0adc6e03826d0d599cccb9fda6 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Mon, 29 Jul 2024 22:31:48 +0800 Subject: [PATCH] fix: type error --- package.json | 2 +- src/components/common/NovaIcon.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 19d1902..451b094 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "build:dev": "vue-tsc --noEmit && vite build --mode dev", "build:test": "vue-tsc --noEmit && vite build --mode test", "preview": "vite preview --port 9981", - "lint": "eslint .", + "lint": "eslint . && vue-tsc --noEmit", "lint:fix": "eslint . --fix", "lint:check": "npx @eslint/config-inspector", "sizecheck": "npx vite-bundle-visualizer" diff --git a/src/components/common/NovaIcon.vue b/src/components/common/NovaIcon.vue index 2cc7f41..d0af924 100644 --- a/src/components/common/NovaIcon.vue +++ b/src/components/common/NovaIcon.vue @@ -3,7 +3,7 @@ import { Icon } from '@iconify/vue' interface iconPorps { /* 图标名称 */ - icon: string + icon?: string /* 图标颜色 */ color?: string /* 图标大小 */ @@ -16,7 +16,7 @@ const props = withDefaults(defineProps(), { }) const isLocal = computed(() => { - return props.icon.startsWith('local:') + return props.icon && props.icon.startsWith('local:') }) function getLocalIcon(icon: string) {