🎨 修改 router 路径.

This commit is contained in:
lijiahang
2024-03-07 17:34:44 +08:00
parent 6a7615e294
commit 7413b7e932
13 changed files with 52 additions and 53 deletions

View File

@@ -3,22 +3,21 @@ import { DEFAULT_LAYOUT } from '../base';
const SYSTEM: AppRouteRecordRaw = {
name: 'system',
path: '/system',
component: DEFAULT_LAYOUT,
children: [
{
name: 'systemMenu',
path: '/system/menu',
path: '/menu',
component: () => import('@/views/system/menu/index.vue'),
},
{
name: 'systemDictKey',
path: '/system/dict-key',
path: '/dict-key',
component: () => import('@/views/system/dict-key/index.vue'),
},
{
name: 'systemDictValue',
path: '/system/dict-value',
path: '/dict-value',
component: () => import('@/views/system/dict-value/index.vue'),
},
],