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) {