Files
orion-visor/orion-ops-ui/src/router/routes/modules/host.ts
2024-01-04 17:58:20 +08:00

21 lines
409 B
TypeScript

import type { AppRouteRecordRaw } from '../types';
import { FULL_LAYOUT } from '../base';
const HOST: AppRouteRecordRaw = {
name: 'host',
path: '/host',
component: FULL_LAYOUT,
children: [
{
name: 'hostTerminal',
path: '/host/terminal',
component: () => import('@/views/host/terminal/index.vue'),
meta: {
noAffix: true
}
},
],
};
export default HOST;