form.ts 708 B

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