import type { AppRouteModule } from '/@/router/types'; import { LAYOUT } from '/@/router/constant'; const dashboard: AppRouteModule = { path: '/dashboard', name: 'Dashboard', component: LAYOUT, redirect: '/dashboard/welcome', meta: { icon: 'ant-design:home-outlined', title: 'routes.dashboard.dashboard', }, children: [ { path: 'workbench', name: 'Workbench', component: () => import('/@/views/dashboard/workbench/index.vue'), meta: { title: 'routes.dashboard.workbench', }, }, { path: 'analysis', name: 'Analysis', component: () => import('/@/views/dashboard/analysis/index.vue'), meta: { title: 'routes.dashboard.analysis', }, }, ], }; export default dashboard;