Files
orion-visor/orion-ops-ui/src/router/routes/modules/asset.ts
lijiahangmax 4cef9b358e 🔨 执行模板页面.
2024-03-08 01:21:27 +08:00

30 lines
772 B
TypeScript

import type { AppRouteRecordRaw } from '../types';
import { DEFAULT_LAYOUT } from '../base';
const ASSET: AppRouteRecordRaw = {
name: 'assetModule',
path: '/asset-module',
component: DEFAULT_LAYOUT,
children: [
{
name: 'hostList',
path: '/host-list',
component: () => import('@/views/asset/host-list/index.vue'),
}, {
name: 'hostKey',
path: '/host-key',
component: () => import('@/views/asset/host-key/index.vue'),
}, {
name: 'hostIdentity',
path: '/host-identity',
component: () => import('@/views/asset/host-identity/index.vue'),
}, {
name: 'assetGrant',
path: '/asset-grant',
component: () => import('@/views/asset/grant/index.vue'),
},
],
};
export default ASSET;