Files
orion-visor/orion-ops-ui/src/router/routes/modules/host.ts

21 lines
400 B
TypeScript
Raw Normal View History

2023-12-05 19:23:03 +08:00
import type { AppRouteRecordRaw } from '../types';
import { FULL_LAYOUT } from '../base';
2024-01-04 17:58:20 +08:00
const HOST: AppRouteRecordRaw = {
name: 'host',
2023-12-05 19:23:03 +08:00
path: '/host',
component: FULL_LAYOUT,
children: [
{
2024-01-31 19:02:43 +08:00
name: 'hostSpace',
path: '/host/space',
component: () => import('@/views/host/space/index.vue'),
2023-12-13 23:59:31 +08:00
meta: {
noAffix: true
}
2023-12-05 19:23:03 +08:00
},
],
};
2024-01-04 17:58:20 +08:00
export default HOST;