routes.ts 705 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. export default [
  2. {
  3. path: '/user',
  4. layout: false,
  5. routes: [
  6. {
  7. path: '/user',
  8. routes: [
  9. {
  10. name: 'login',
  11. path: '/user/login',
  12. component: './user/login',
  13. },
  14. ],
  15. },
  16. ],
  17. },
  18. {
  19. path: '/welcome',
  20. name: 'welcome',
  21. icon: 'smile',
  22. component: './Welcome',
  23. },
  24. {
  25. name: 'list.table-list',
  26. icon: 'table',
  27. path: '/order',
  28. component: './Order/Billing',
  29. },
  30. // {
  31. // name: 'list.table-list',
  32. // icon: 'table',
  33. // path: '/list',
  34. // component: './ListTableList',
  35. // },
  36. {
  37. path: '/',
  38. redirect: '/welcome',
  39. },
  40. {
  41. component: './404',
  42. },
  43. ];