前端业务拆分.
This commit is contained in:
20
orion-ops-ui/src/router/routes/modules/host.ts
Normal file
20
orion-ops-ui/src/router/routes/modules/host.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { AppRouteRecordRaw } from '../types';
|
||||
import { FULL_LAYOUT } from '../base';
|
||||
|
||||
const HOST: AppRouteRecordRaw = {
|
||||
name: 'host',
|
||||
path: '/host',
|
||||
component: FULL_LAYOUT,
|
||||
children: [
|
||||
{
|
||||
name: 'hostTerminal',
|
||||
path: '/host/terminal',
|
||||
component: () => import('@/views/host/terminal/index.vue'),
|
||||
meta: {
|
||||
noAffix: true
|
||||
}
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default HOST;
|
||||
Reference in New Issue
Block a user