basic.ts 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. export const basicRoutes = [
  2. {
  3. path: '/basic',
  4. name: 'Basic',
  5. component: () => import('../../pages/basic/index.vue'),
  6. },
  7. {
  8. path: '/basic/lights',
  9. name: 'Lights',
  10. component: () => import('../../pages/basic/Lights.vue'),
  11. },
  12. {
  13. path: '/basic/groups',
  14. name: 'Groups',
  15. component: () => import('../../pages/basic/Groups.vue'),
  16. },
  17. {
  18. path: '/basic/conditional',
  19. name: 'Conditional',
  20. component: () => import('../../pages/basic/Conditional.vue'),
  21. },
  22. {
  23. path: '/Primitives',
  24. name: 'Primitives',
  25. component: () => import('../../pages/basic/Primitives.vue'),
  26. },
  27. {
  28. path: '/basic/multiple',
  29. name: 'Multiple',
  30. component: () => import('../../pages/basic/Multiple.vue'),
  31. },
  32. {
  33. path: '/basic/responsive',
  34. name: 'Responsiveness',
  35. component: () => import('../../pages/basic/Responsiveness.vue'),
  36. },
  37. {
  38. path: '/basic/onCallbacks',
  39. name: 'on... callbacks',
  40. component: () => import('../../pages/basic/OnCallbacks.vue'),
  41. },
  42. {
  43. path: '/basic/pierced-props',
  44. name: 'Pierced Props',
  45. component: () => import('../../pages/basic/PiercedProps.vue'),
  46. },
  47. {
  48. path: '/basic/ready',
  49. name: '@ready',
  50. component: () => import('../../pages/basic/ready/index.vue'),
  51. },
  52. {
  53. path: '/basic/textures',
  54. name: 'Textures',
  55. component: () => import('../../pages/basic/Textures.vue'),
  56. },
  57. ]