123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- export const basicRoutes = [
- {
- path: '/basic',
- name: 'Basic',
- component: () => import('../../pages/basic/index.vue'),
- },
- {
- path: '/basic/lights',
- name: 'Lights',
- component: () => import('../../pages/basic/Lights.vue'),
- },
- {
- path: '/basic/groups',
- name: 'Groups',
- component: () => import('../../pages/basic/Groups.vue'),
- },
- {
- path: '/basic/conditional',
- name: 'Conditional',
- component: () => import('../../pages/basic/Conditional.vue'),
- },
- {
- path: '/Primitives',
- name: 'Primitives',
- component: () => import('../../pages/basic/Primitives.vue'),
- },
- {
- path: '/basic/multiple',
- name: 'Multiple',
- component: () => import('../../pages/basic/Multiple.vue'),
- },
- {
- path: '/basic/responsive',
- name: 'Responsiveness',
- component: () => import('../../pages/basic/Responsiveness.vue'),
- },
- {
- path: '/basic/onCallbacks',
- name: 'on... callbacks',
- component: () => import('../../pages/basic/OnCallbacks.vue'),
- },
- {
- path: '/basic/pierced-props',
- name: 'Pierced Props',
- component: () => import('../../pages/basic/PiercedProps.vue'),
- },
- {
- path: '/basic/ready',
- name: '@ready',
- component: () => import('../../pages/basic/ready/index.vue'),
- },
- {
- path: '/basic/textures',
- name: 'Textures',
- component: () => import('../../pages/basic/Textures.vue'),
- },
- ]
|