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