1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import type { RouteRecordRaw } from 'vue-router';
|
| const workflowTableConfigTestRoutes: RouteRecordRaw[] = [
| {
| path: '/workflow-table-config-test',
| name: 'WorkflowTableConfigTest',
| component: () => import('#/views/test/workflowTableConfig/index.vue'),
| meta: {
| hideInBreadcrumb: true,
| hideInMenu: true,
| hideInTab: false,
| ignoreAccess: true,
| title: '流程表配置测试',
| },
| },
| ];
|
| export default workflowTableConfigTestRoutes;
|
|