From 5fdea06fbfc49a8ae8f20054db6b27fcf4ade75f Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期四, 04 七月 2024 00:34:19 +0800 Subject: [PATCH] 一些更新 --- src/router/routes/modules/demo/flow.ts | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/router/routes/modules/demo/flow.ts b/src/router/routes/modules/demo/flow.ts index 4654c9b..9260e0f 100644 --- a/src/router/routes/modules/demo/flow.ts +++ b/src/router/routes/modules/demo/flow.ts @@ -1,9 +1,9 @@ -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 charts: AppRouteModule = { +const flow: AppRouteModule = { path: '/flow', name: 'FlowDemo', component: LAYOUT, @@ -17,7 +17,7 @@ { path: 'flowChart', name: 'flowChartDemo', - component: () => import('/@/views/demo/comp/flow-chart/index.vue'), + component: () => import('@/views/demo/comp/flow-chart/index.vue'), meta: { title: t('routes.demo.flow.flowChart'), }, @@ -25,4 +25,4 @@ ], }; -export default charts; +export default flow; -- Gitblit v1.9.3