|
@@ -14,14 +14,6 @@ const dashboard: AppRouteModule = {
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
|
- path: 'workbench',
|
|
|
- name: 'Workbench',
|
|
|
- component: () => import('/@/views/dashboard/workbench/index.vue'),
|
|
|
- meta: {
|
|
|
- title: t('routes.dashboard.workbench'),
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
path: 'analysis',
|
|
|
name: 'Analysis',
|
|
|
component: () => import('/@/views/dashboard/analysis/index.vue'),
|
|
@@ -30,6 +22,14 @@ const dashboard: AppRouteModule = {
|
|
|
title: t('routes.dashboard.analysis'),
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ path: 'workbench',
|
|
|
+ name: 'Workbench',
|
|
|
+ component: () => import('/@/views/dashboard/workbench/index.vue'),
|
|
|
+ meta: {
|
|
|
+ title: t('routes.dashboard.workbench'),
|
|
|
+ },
|
|
|
+ },
|
|
|
],
|
|
|
};
|
|
|
|