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

21 lines
424 B
TypeScript
Raw Normal View History

2023-12-05 19:23:03 +08:00
import type { AppRouteRecordRaw } from '../types';
import { FULL_LAYOUT } from '../base';
const HOST_OPS: AppRouteRecordRaw = {
name: 'hostOps',
path: '/host',
component: FULL_LAYOUT,
children: [
{
name: 'hostTerminal',
path: '/host/terminal',
component: () => import('@/views/host-ops/terminal/index.vue'),
2023-12-13 23:59:31 +08:00
meta: {
noAffix: true
}
2023-12-05 19:23:03 +08:00
},
],
};
export default HOST_OPS;