18 lines
380 B
TypeScript
18 lines
380 B
TypeScript
|
|
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'),
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default HOST_OPS;
|