fix: type error & local icon error

This commit is contained in:
chansee97 2024-07-25 22:32:52 +08:00
parent 5c24fa1502
commit 5cc410c7b4
7 changed files with 14 additions and 15 deletions

1
.github/FUNDING.yml vendored
View File

@ -1 +0,0 @@
custom: ['https://cdn.jsdelivr.net/gh/chansee97/static/sponsor-wechat.png', 'https://cdn.jsdelivr.net/gh/chansee97/static/sponsor-alipay.png']

View File

@ -3,7 +3,7 @@ import { Icon } from '@iconify/vue'
interface iconPorps {
/* 图标名称 */
icon?: string
icon: string
/* 图标颜色 */
color?: string
/* 图标大小 */
@ -13,11 +13,10 @@ interface iconPorps {
}
const props = withDefaults(defineProps<iconPorps>(), {
size: 18,
isLocal: false,
})
const isLocal = computed(() => {
return props.icon && props.icon.startsWith('local:')
return props.icon.startsWith('local:')
})
function getLocalIcon(icon: string) {
@ -28,25 +27,22 @@ function getLocalIcon(icon: string) {
eager: true,
})
const domparser = new DOMParser()
return domparser.parseFromString(svg[`/src/assets/svg-icons/${svgName}.svg`], 'image/svg+xml')
return svg[`/src/assets/svg-icons/${svgName}.svg`]
}
</script>
<template>
<n-icon
v-if="icon && !isLocal"
v-if="icon"
:size="size"
:depth="depth"
:color="color"
>
<template v-if="isLocal">
{{ getLocalIcon(icon) }}
<i v-html="getLocalIcon(icon)" />
</template>
<template v-else>
<Icon :icon="icon" />
</template>
</n-icon>
</template>
<style scoped></style>

View File

@ -52,8 +52,8 @@ onMounted(() => {
const sideMenu = ref<MenuOption[]>([])
function handleSideMenu(key: string) {
// @ts-expect-error no error at here
const targetMenu = routeStore.menus.find(i => i.key === key)
const routeMenu = routeStore.menus as MenuOption[]
const targetMenu = routeMenu.find(i => i.key === key)
if (targetMenu) {
sideMenu.value = targetMenu.children ? targetMenu.children : [targetMenu]
}

View File

@ -24,6 +24,9 @@
<div>
大大大<svg-icons-cool class="text-4em" />
</div>
<div>
nova-icon组件加载<nova-icon icon="local:cool" />
</div>
</n-card>
</n-space>
</template>

View File

@ -81,8 +81,8 @@ const columns: DataTableColumns<Entity.DemoList> = [
return (
<NSwitch
value={row.disabled}
onUpdateValue={disabled =>
handleUpdateDisabled(disabled, row.id)}
onUpdateValue={(value: boolean) =>
handleUpdateDisabled(value, row.id)}
>
{{ checked: () => '启用', unchecked: () => '禁用' }}
</NSwitch>

View File

@ -74,7 +74,7 @@ const columns: DataTableColumns<Entity.User> = [
value={row.status}
checked-value={1}
unchecked-value={0}
onUpdateValue={value =>
onUpdateValue={(value: 0 | 1) =>
handleUpdateDisabled(value, row.id!)}
>
{{ checked: () => '启用', unchecked: () => '禁用' }}

View File

@ -2,6 +2,7 @@
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["ESNext", "DOM"],
"baseUrl": ".",
"module": "ESNext",