Sanakey
2024-08-07 807478b46d3940ba0fb5353f7cb8d220bc67bbf9
提交 | 用户 | age
807478 1 import type { AppRouteModule } from '@/router/types';
S 2
3 import { LAYOUT } from '@/router/constant';
4
5 const permission: AppRouteModule = {
6   path: '/form-designer',
7   name: 'Form-designer',
8   component: LAYOUT,
9   meta: {
10     orderNo: 10000,
11     icon: 'ion:build-outline',
12     title: '表单设计',
13   },
14   children: [
15     {
16       path: 'design',
17       name: 'Design',
18       meta: {
19         title: '表单设计',
20       },
21       component: () => import('@/views/form-design/index.vue'),
22     },
23     {
24       path: 'example1',
25       name: 'Example1',
26       meta: {
27         title: '示例',
28       },
29       component: () => import('@/views/form-design/examples/baseForm.vue'),
30     },
31   ],
32 };
33
34 export default permission;