| | |
| | | import type { AppRouteModule } from '/@/router/types'; |
| | | import type { AppRouteModule } from '@/router/types'; |
| | | |
| | | import { LAYOUT } from '/@/router/constant'; |
| | | import { LAYOUT } from '@/router/constant'; |
| | | |
| | | const permission: AppRouteModule = { |
| | | path: '/form-designer', |
| | |
| | | meta: { |
| | | title: '表单设计', |
| | | }, |
| | | component: () => import('/@/views/form-design/index.vue'), |
| | | component: () => import('@/views/form-design/index.vue'), |
| | | }, |
| | | { |
| | | path: 'example1', |
| | |
| | | meta: { |
| | | title: '示例', |
| | | }, |
| | | component: () => import('/@/views/form-design/examples/baseForm.vue'), |
| | | component: () => import('@/views/form-design/examples/baseForm.vue'), |
| | | }, |
| | | ], |
| | | }; |