From 7d26ed0e19bf952e7c037b21bfd687759b46e851 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 25 六月 2024 19:21:33 +0800 Subject: [PATCH] 菜单更新 --- src/router/routes/modules/dashboard.ts | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/router/routes/modules/dashboard.ts b/src/router/routes/modules/dashboard.ts index f532ec7..9c1590c 100644 --- a/src/router/routes/modules/dashboard.ts +++ b/src/router/routes/modules/dashboard.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 dashboard: AppRouteModule = { path: '/dashboard', @@ -17,7 +17,7 @@ { path: 'analysis', name: 'Analysis', - component: () => import('/@/views/dashboard/analysis/index.vue'), + component: () => import('@/views/dashboard/analysis/index.vue'), meta: { // affix: true, title: t('routes.dashboard.analysis'), @@ -26,7 +26,7 @@ { path: 'workbench', name: 'Workbench', - component: () => import('/@/views/dashboard/workbench/index.vue'), + component: () => import('@/views/dashboard/workbench/index.vue'), meta: { title: t('routes.dashboard.workbench'), }, -- Gitblit v1.9.3