dashboard.ts 414 B

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