feat: 终端布局.

This commit is contained in:
lijiahang
2023-12-05 19:23:03 +08:00
parent 9b3e5eef48
commit 36cd105bc8
11 changed files with 430 additions and 33 deletions

View 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;