12345678910111213141516171819202122232425262728293031323334 |
- 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: 'bx:bx-home',
- 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;
|