routes.ts 603 B

123456789101112131415161718192021222324252627282930
  1. const routes = [
  2. {
  3. path: '/login',
  4. name: '登录',
  5. layout: false,
  6. component: 'login',
  7. hideInMenu: true
  8. },
  9. {
  10. path: '/playground',
  11. name: 'Playground',
  12. component: 'playground',
  13. icon: 'code'
  14. },
  15. {
  16. path: '/assistants',
  17. name: 'Assistants',
  18. component: 'assistants',
  19. icon: 'areaChart'
  20. },
  21. {
  22. path: '/actions',
  23. name: 'Actions',
  24. component: 'actions',
  25. icon: 'tool'
  26. },
  27. { path: '/', redirect: '/playground' },
  28. { component: './404' }
  29. ];
  30. export default routes;