From 1b419ccf217dbcace15987f1c0fe26b9e15d1d4b Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期三, 16 十月 2024 10:26:56 +0800 Subject: [PATCH] 工艺绑定优化 --- src/router/routes/modules/form-design/main.ts | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/router/routes/modules/form-design/main.ts b/src/router/routes/modules/form-design/main.ts index 205a789..5f1e40b 100644 --- a/src/router/routes/modules/form-design/main.ts +++ b/src/router/routes/modules/form-design/main.ts @@ -1,6 +1,6 @@ -import type { AppRouteModule } from '/@/router/types'; +import type { AppRouteModule } from '@/router/types'; -import { LAYOUT } from '/@/router/constant'; +import { LAYOUT } from '@/router/constant'; const permission: AppRouteModule = { path: '/form-designer', @@ -18,7 +18,7 @@ meta: { title: '琛ㄥ崟璁捐', }, - component: () => import('/@/views/form-design/index.vue'), + component: () => import('@/views/form-design/index.vue'), }, { path: 'example1', @@ -26,7 +26,7 @@ meta: { title: '绀轰緥', }, - component: () => import('/@/views/form-design/examples/baseForm.vue'), + component: () => import('@/views/form-design/examples/baseForm.vue'), }, ], }; -- Gitblit v1.9.3