editor.ts 634 B

123456789101112131415161718192021222324252627282930
  1. import type { MenuModule } from '/@/router/types.d';
  2. const menu: MenuModule = {
  3. orderNo: 500,
  4. menu: {
  5. name: 'routes.demo.editor.editor',
  6. path: '/editor',
  7. children: [
  8. {
  9. path: 'markdown',
  10. name: 'routes.demo.editor.markdown',
  11. },
  12. {
  13. path: 'tinymce',
  14. name: 'routes.demo.editor.tinymce',
  15. children: [
  16. {
  17. path: 'index',
  18. name: 'routes.demo.editor.tinymceBasic',
  19. },
  20. {
  21. path: 'editor',
  22. name: 'routes.demo.editor.tinymceForm',
  23. },
  24. ],
  25. },
  26. ],
  27. },
  28. };
  29. export default menu;