Blame view

src/router/menus/modules/demo/form.ts 714 Bytes
vben authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import type { MenuModule } from '/@/router/types.d';
const menu: MenuModule = {
  orderNo: 40,
  menu: {
    path: '/form',
    name: 'Form',
    children: [
      {
        path: '/basic',
        name: '基础表单',
      },
      {
        path: '/useForm',
        name: 'useForm',
      },
      {
        path: '/refForm',
        name: 'RefForm',
      },
      {
        path: '/advancedForm',
        name: '可收缩表单',
      },
      {
        path: '/ruleForm',
        name: '表单校验',
      },
      {
        path: '/dynamicForm',
        name: '动态表单',
      },
      {
        path: '/customerForm',
        name: '自定义组件',
      },
    ],
  },
};
export default menu;