1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| import type { RouteRecordRaw } from 'vue-router';
|
| /** 菜单:路由 /tms/trainMode ,页面地址 x/tms/trainMode/index */
| const tmsTrainModeRoutes: RouteRecordRaw[] = [
| {
| path: '/tms/trainMode',
| name: 'TmsTrainMode',
| component: () => import('#/views/x/tms/trainMode/index.vue'),
| meta: {
| title: '培训方式',
| hideInMenu: true,
| ignoreAccess: true,
| },
| },
| ];
|
| export default tmsTrainModeRoutes;
|
|