mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 12:44:27 +08:00
fix: type error & local icon error
This commit is contained in:
parent
5c24fa1502
commit
5cc410c7b4
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
@ -1 +0,0 @@
|
|||||||
custom: ['https://cdn.jsdelivr.net/gh/chansee97/static/sponsor-wechat.png', 'https://cdn.jsdelivr.net/gh/chansee97/static/sponsor-alipay.png']
|
|
@ -3,7 +3,7 @@ import { Icon } from '@iconify/vue'
|
|||||||
|
|
||||||
interface iconPorps {
|
interface iconPorps {
|
||||||
/* 图标名称 */
|
/* 图标名称 */
|
||||||
icon?: string
|
icon: string
|
||||||
/* 图标颜色 */
|
/* 图标颜色 */
|
||||||
color?: string
|
color?: string
|
||||||
/* 图标大小 */
|
/* 图标大小 */
|
||||||
@ -13,11 +13,10 @@ interface iconPorps {
|
|||||||
}
|
}
|
||||||
const props = withDefaults(defineProps<iconPorps>(), {
|
const props = withDefaults(defineProps<iconPorps>(), {
|
||||||
size: 18,
|
size: 18,
|
||||||
isLocal: false,
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const isLocal = computed(() => {
|
const isLocal = computed(() => {
|
||||||
return props.icon && props.icon.startsWith('local:')
|
return props.icon.startsWith('local:')
|
||||||
})
|
})
|
||||||
|
|
||||||
function getLocalIcon(icon: string) {
|
function getLocalIcon(icon: string) {
|
||||||
@ -28,25 +27,22 @@ function getLocalIcon(icon: string) {
|
|||||||
eager: true,
|
eager: true,
|
||||||
})
|
})
|
||||||
|
|
||||||
const domparser = new DOMParser()
|
return svg[`/src/assets/svg-icons/${svgName}.svg`]
|
||||||
return domparser.parseFromString(svg[`/src/assets/svg-icons/${svgName}.svg`], 'image/svg+xml')
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<n-icon
|
<n-icon
|
||||||
v-if="icon && !isLocal"
|
v-if="icon"
|
||||||
:size="size"
|
:size="size"
|
||||||
:depth="depth"
|
:depth="depth"
|
||||||
:color="color"
|
:color="color"
|
||||||
>
|
>
|
||||||
<template v-if="isLocal">
|
<template v-if="isLocal">
|
||||||
{{ getLocalIcon(icon) }}
|
<i v-html="getLocalIcon(icon)" />
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<Icon :icon="icon" />
|
<Icon :icon="icon" />
|
||||||
</template>
|
</template>
|
||||||
</n-icon>
|
</n-icon>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped></style>
|
|
||||||
|
@ -52,8 +52,8 @@ onMounted(() => {
|
|||||||
|
|
||||||
const sideMenu = ref<MenuOption[]>([])
|
const sideMenu = ref<MenuOption[]>([])
|
||||||
function handleSideMenu(key: string) {
|
function handleSideMenu(key: string) {
|
||||||
// @ts-expect-error no error at here
|
const routeMenu = routeStore.menus as MenuOption[]
|
||||||
const targetMenu = routeStore.menus.find(i => i.key === key)
|
const targetMenu = routeMenu.find(i => i.key === key)
|
||||||
if (targetMenu) {
|
if (targetMenu) {
|
||||||
sideMenu.value = targetMenu.children ? targetMenu.children : [targetMenu]
|
sideMenu.value = targetMenu.children ? targetMenu.children : [targetMenu]
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,9 @@
|
|||||||
<div>
|
<div>
|
||||||
大大大:<svg-icons-cool class="text-4em" />
|
大大大:<svg-icons-cool class="text-4em" />
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
nova-icon组件加载:<nova-icon icon="local:cool" />
|
||||||
|
</div>
|
||||||
</n-card>
|
</n-card>
|
||||||
</n-space>
|
</n-space>
|
||||||
</template>
|
</template>
|
||||||
|
@ -81,8 +81,8 @@ const columns: DataTableColumns<Entity.DemoList> = [
|
|||||||
return (
|
return (
|
||||||
<NSwitch
|
<NSwitch
|
||||||
value={row.disabled}
|
value={row.disabled}
|
||||||
onUpdateValue={disabled =>
|
onUpdateValue={(value: boolean) =>
|
||||||
handleUpdateDisabled(disabled, row.id)}
|
handleUpdateDisabled(value, row.id)}
|
||||||
>
|
>
|
||||||
{{ checked: () => '启用', unchecked: () => '禁用' }}
|
{{ checked: () => '启用', unchecked: () => '禁用' }}
|
||||||
</NSwitch>
|
</NSwitch>
|
||||||
|
@ -74,7 +74,7 @@ const columns: DataTableColumns<Entity.User> = [
|
|||||||
value={row.status}
|
value={row.status}
|
||||||
checked-value={1}
|
checked-value={1}
|
||||||
unchecked-value={0}
|
unchecked-value={0}
|
||||||
onUpdateValue={value =>
|
onUpdateValue={(value: 0 | 1) =>
|
||||||
handleUpdateDisabled(value, row.id!)}
|
handleUpdateDisabled(value, row.id!)}
|
||||||
>
|
>
|
||||||
{{ checked: () => '启用', unchecked: () => '禁用' }}
|
{{ checked: () => '启用', unchecked: () => '禁用' }}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ESNext",
|
"target": "ESNext",
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
|
"jsxImportSource": "vue",
|
||||||
"lib": ["ESNext", "DOM"],
|
"lib": ["ESNext", "DOM"],
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user