添加 主机列表页面.

This commit is contained in:
lijiahang
2023-09-11 16:33:57 +08:00
parent a398be9148
commit 23d9063ea4
10 changed files with 639 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
import { DEFAULT_LAYOUT } from '../base';
import { AppRouteRecordRaw } from '../types';
const ASSET: AppRouteRecordRaw = {
name: 'asset',
path: '/asset',
component: DEFAULT_LAYOUT,
children: [
{
name: 'assetHost',
path: '/asset/host',
component: () => import('@/views/asset/host/index.vue'),
},
],
};
export default ASSET;

View File

@@ -1,8 +1,8 @@
import { DEFAULT_LAYOUT } from '../base';
import { AppRouteRecordRaw } from '../types';
const MENU: AppRouteRecordRaw = {
name: 'menu',
const SYSTEM: AppRouteRecordRaw = {
name: 'system',
path: '/system',
component: DEFAULT_LAYOUT,
children: [
@@ -14,4 +14,4 @@ const MENU: AppRouteRecordRaw = {
],
};
export default MENU;
export default SYSTEM;