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