feat: 终端布局.
This commit is contained in:
17
orion-ops-ui/src/router/routes/modules/host-ops.ts
Normal file
17
orion-ops-ui/src/router/routes/modules/host-ops.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user