From 5e54b2866eb181e84de9910de06fd013a280a5c9 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期三, 05 三月 2025 16:18:36 +0800 Subject: [PATCH] 保存实体更新 --- src/router/routes/modules/about.ts | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/router/routes/modules/about.ts b/src/router/routes/modules/about.ts index 87ebb69..a1f0dcb 100644 --- a/src/router/routes/modules/about.ts +++ b/src/router/routes/modules/about.ts @@ -1,7 +1,7 @@ -import type { AppRouteModule } from '/@/router/types'; +import type { AppRouteModule } from '@/router/types'; -import { LAYOUT } from '/@/router/constant'; -import { t } from '/@/hooks/web/useI18n'; +import { LAYOUT } from '@/router/constant'; +import { t } from '@/hooks/web/useI18n'; const about: AppRouteModule = { path: '/about', @@ -10,7 +10,7 @@ redirect: '/about/index', meta: { hideChildrenInMenu: true, - icon: 'simple-icons:about-dot-me', + icon: 'simple-icons:aboutdotme', title: t('routes.dashboard.about'), orderNo: 100000, }, @@ -18,10 +18,10 @@ { path: 'index', name: 'AboutPage', - component: () => import('/@/views/sys/about/index.vue'), + component: () => import('@/views/sys/about/index.vue'), meta: { title: t('routes.dashboard.about'), - icon: 'simple-icons:about-dot-me', + icon: 'simple-icons:aboutdotme', hideMenu: true, }, }, -- Gitblit v1.9.3