feat: 工作空间.

This commit is contained in:
lijiahangmax
2023-12-05 00:01:18 +08:00
parent f26b90ba34
commit c5120463d9
6 changed files with 99 additions and 26 deletions

View File

@@ -0,0 +1,16 @@
import type { AppRouteRecordRaw } from '../types';
const DASHBOARD: AppRouteRecordRaw = {
name: 'hostWorkspace',
path: '/host-workspace',
component: () => import('@/layout/host-workspace-layout.vue'),
children: [
{
name: 'hostTerminal',
path: '/host-workspace/terminal',
component: () => import('@/views/host-workspace/terminal/index.vue'),
},
],
};
export default DASHBOARD;