dashboard.ts 483 B

123456789101112131415161718192021222324
  1. import type { MenuModule } from '/@/router/types.d';
  2. const menu: MenuModule = {
  3. orderNo: 10,
  4. menu: {
  5. name: 'routes.dashboard.dashboard',
  6. path: '/dashboard',
  7. children: [
  8. {
  9. path: '/workbench',
  10. name: 'routes.dashboard.workbench',
  11. },
  12. {
  13. path: '/analysis',
  14. name: 'routes.dashboard.analysis',
  15. },
  16. {
  17. path: '/welcome',
  18. name: 'routes.dashboard.welcome',
  19. },
  20. ],
  21. },
  22. };
  23. export default menu;