fix: modify icons import

This commit is contained in:
chansee97 2024-04-11 21:56:24 +08:00
parent d490260758
commit 33c1d4087d
5 changed files with 35 additions and 23 deletions

View File

@ -1,7 +1,9 @@
<script setup lang="ts"> <script setup lang="ts">
import { NFlex } from 'naive-ui' import { NFlex } from 'naive-ui'
import { useAppStore } from '@/store' import { useAppStore } from '@/store'
import { renderIcon } from '@/utils' import IconSun from '~icons/icon-park-outline/sun-one'
import IconMoon from '~icons/icon-park-outline/moon'
import IconAuto from '~icons/icon-park-outline/laptop-computer'
const { t } = useI18n() const { t } = useI18n()
@ -12,17 +14,17 @@ const options = computed(() => {
{ {
label: t('app.lignt'), label: t('app.lignt'),
value: 'light', value: 'light',
icon: 'icon-park-outline:sun-one', icon: IconSun,
}, },
{ {
label: t('app.dark'), label: t('app.dark'),
value: 'dark', value: 'dark',
icon: 'icon-park-outline:moon', icon: IconMoon,
}, },
{ {
label: t('app.system'), label: t('app.system'),
value: 'auto', value: 'auto',
icon: 'icon-park-outline:laptop-computer', icon: IconAuto,
}, },
] ]
}) })
@ -30,7 +32,7 @@ const options = computed(() => {
function renderLabel(option: any) { function renderLabel(option: any) {
return h(NFlex, { align: 'center' }, { return h(NFlex, { align: 'center' }, {
default: () => [ default: () => [
renderIcon(option.icon)(), h(option.icon),
option.label, option.label,
], ],
}) })

View File

@ -1,6 +1,10 @@
<script setup lang="ts"> <script setup lang="ts">
import { renderIcon } from '@/utils/icon' import { renderIcon } from '@/utils/icon'
import { useAuthStore } from '@/store' import { useAuthStore } from '@/store'
import IconGithub from '~icons/icon-park-outline/github'
import IconUser from '~icons/icon-park-outline/user'
import IconLogout from '~icons/icon-park-outline/logout'
import IconBookOpen from '~icons/icon-park-outline/book-open'
const { t } = useI18n() const { t } = useI18n()
@ -12,7 +16,7 @@ const options = computed(() => {
{ {
label: t('app.userCenter'), label: t('app.userCenter'),
key: 'userCenter', key: 'userCenter',
icon: renderIcon('carbon:user-avatar-filled-alt'), icon: () => h(IconUser),
}, },
{ {
type: 'divider', type: 'divider',
@ -21,13 +25,18 @@ const options = computed(() => {
{ {
label: 'Github', label: 'Github',
key: 'guthub', key: 'guthub',
icon: renderIcon('icon-park-outline:github'), icon: () => h(IconGithub),
}, },
{ {
label: 'Gitee', label: 'Gitee',
key: 'gitee', key: 'gitee',
icon: renderIcon('simple-icons:gitee'), icon: renderIcon('simple-icons:gitee'),
}, },
{
label: 'Docs',
key: 'docs',
icon: () => h(IconBookOpen),
},
{ {
type: 'divider', type: 'divider',
key: 'd1', key: 'd1',
@ -35,7 +44,7 @@ const options = computed(() => {
{ {
label: t('app.loginOut'), label: t('app.loginOut'),
key: 'loginOut', key: 'loginOut',
icon: renderIcon('icon-park-outline:logout'), icon: () => h(IconLogout),
}, },
] ]
}) })
@ -59,6 +68,9 @@ function handleSelect(key: string | number) {
if (key === 'gitee') if (key === 'gitee')
window.open('https://gitee.com/chansee97/nova-admin') window.open('https://gitee.com/chansee97/nova-admin')
if (key === 'docs')
window.open('https://nova-admin-docs.netlify.app/')
} }
</script> </script>

View File

@ -2,8 +2,13 @@
import type { RouteLocationNormalized } from 'vue-router' import type { RouteLocationNormalized } from 'vue-router'
import Reload from './Reload.vue' import Reload from './Reload.vue'
import DropTabs from './DropTabs.vue' import DropTabs from './DropTabs.vue'
import { renderIcon } from '@/utils'
import { useAppStore, useTabStore } from '@/store' import { useAppStore, useTabStore } from '@/store'
import IconRedo from '~icons/icon-park-outline/redo'
import IconClose from '~icons/icon-park-outline/close'
import IconDelete from '~icons/icon-park-outline/delete-four'
import IconLeft from '~icons/icon-park-outline/to-left'
import IconRight from '~icons/icon-park-outline/to-right'
import IconFullwith from '~icons/icon-park-outline/fullwidth'
const tabStore = useTabStore() const tabStore = useTabStore()
const appStore = useAppStore() const appStore = useAppStore()
@ -21,32 +26,32 @@ const options = computed(() => {
{ {
label: t('common.reload'), label: t('common.reload'),
key: 'reload', key: 'reload',
icon: renderIcon('icon-park-outline:redo'), icon: () => h(IconRedo),
}, },
{ {
label: t('common.close'), label: t('common.close'),
key: 'closeCurrent', key: 'closeCurrent',
icon: renderIcon('icon-park-outline:close'), icon: () => h(IconClose),
}, },
{ {
label: t('app.closeOther'), label: t('app.closeOther'),
key: 'closeOther', key: 'closeOther',
icon: renderIcon('icon-park-outline:delete-four'), icon: () => h(IconDelete),
}, },
{ {
label: t('app.closeLeft'), label: t('app.closeLeft'),
key: 'closeLeft', key: 'closeLeft',
icon: renderIcon('icon-park-outline:to-left'), icon: () => h(IconLeft),
}, },
{ {
label: t('app.closeRight'), label: t('app.closeRight'),
key: 'closeRight', key: 'closeRight',
icon: renderIcon('icon-park-outline:to-right'), icon: () => h(IconRight),
}, },
{ {
label: t('app.closeAll'), label: t('app.closeAll'),
key: 'closeAll', key: 'closeAll',
icon: renderIcon('icon-park-outline:fullwidth'), icon: () => h(IconFullwith),
}, },
] ]
}) })

View File

@ -19,13 +19,6 @@ declare namespace NaiveUI {
type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning' type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning'
} }
declare module '~icons/*' {
import type { FunctionalComponent, SVGAttributes } from 'vue'
const component: FunctionalComponent<SVGAttributes>
export default component
}
declare namespace Storage { declare namespace Storage {
interface Session { interface Session {
demoKey: string demoKey: string

View File

@ -10,7 +10,7 @@
"@/*": ["src/*"] "@/*": ["src/*"]
}, },
"resolveJsonModule": true, "resolveJsonModule": true,
"types": ["node", "vite/client", "naive-ui/volar"], "types": ["node", "vite/client", "naive-ui/volar", "unplugin-icons/types/vue"],
"allowJs": true, "allowJs": true,
"strict": true, "strict": true,
"strictNullChecks": true, "strictNullChecks": true,