🎨 修改 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,24 +3,23 @@ import { DEFAULT_LAYOUT } from '../base';
const ASSET: AppRouteRecordRaw = {
name: 'asset',
path: '/asset',
component: DEFAULT_LAYOUT,
children: [
{
name: 'assetHostList',
path: '/asset/host-list',
path: '/host-list',
component: () => import('@/views/asset/host-list/index.vue'),
}, {
name: 'assetHostKey',
path: '/asset/host-key',
path: '/host-key',
component: () => import('@/views/asset/host-key/index.vue'),
}, {
name: 'assetHostIdentity',
path: '/asset/host-identity',
path: '/host-identity',
component: () => import('@/views/asset/host-identity/index.vue'),
}, {
name: 'assetGrant',
path: '/asset/grant',
path: '/asset-grant',
component: () => import('@/views/asset/grant/index.vue'),
},
],