diff --git a/sandbox/components/SandboxNavComponent.vue b/sandbox/components/SandboxNavComponent.vue deleted file mode 100644 index 99d5d6b83d..0000000000 --- a/sandbox/components/SandboxNavComponent.vue +++ /dev/null @@ -1,87 +0,0 @@ - - - - - diff --git a/sandbox/router.ts b/sandbox/router.ts deleted file mode 100644 index 03bb629fa8..0000000000 --- a/sandbox/router.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { createRouter, createWebHashHistory } from 'vue-router' - -export default createRouter({ - history: createWebHashHistory(), - routes: [ - { - path: '/', - name: 'home', - alias: '/:pathMatch(.*)*', - meta: { title: 'Kongponents Sandbox' }, - component: () => import('./pages/HomePage.vue'), - children: [ - { - path: 'alert', - name: 'alert', - meta: { title: 'Alert Sandbox' }, - component: () => import('./pages/SandboxAlert.vue'), - }, - { - path: 'button', - name: 'button', - meta: { title: 'Button Sandbox' }, - component: () => import('./pages/SandboxButton.vue'), - }, - { - path: 'card', - name: 'card', - meta: { title: 'Card Sandbox' }, - component: () => import('./pages/SandboxCard.vue'), - }, - { - path: 'catalog', - name: 'catalog', - meta: { title: 'Catalog Sandbox' }, - component: () => import('./pages/SandboxCatalog.vue'), - }, - { - path: 'checkbox', - name: 'checkbox', - meta: { title: 'Checkbox Sandbox' }, - component: () => import('./pages/SandboxCheckbox.vue'), - }, - { - path: 'dropdown', - name: 'dropdown', - meta: { title: 'Dropdown Sandbox' }, - component: () => import('./pages/SandboxDropdown.vue'), - }, - { - path: 'input', - name: 'input', - meta: { title: 'Input Sandbox' }, - component: () => import('./pages/SandboxInput.vue'), - }, - { - path: 'label', - name: 'label', - meta: { title: 'Label Sandbox' }, - component: () => import('./pages/SandboxLabel.vue'), - }, - { - path: 'multiselect', - name: 'multiselect', - meta: { title: 'Multiselect Sandbox' }, - component: () => import('./pages/SandboxMultiselect.vue'), - }, - { - path: 'radio', - name: 'radio', - meta: { title: 'Radio Sandbox' }, - component: () => import('./pages/SandboxRadio.vue'), - }, - { - path: 'table', - name: 'table', - meta: { title: 'Table Sandbox' }, - component: () => import('./pages/SandboxTable.vue'), - }, - { - path: 'tabs', - name: 'tabs', - meta: { title: 'Tabs Sandbox' }, - component: () => import('./pages/SandboxTabs.vue'), - }, - ], - }, - ], -}) diff --git a/sandbox/router/sandbox-routes.ts b/sandbox/router/sandbox-routes.ts index a7018ade1d..60cd9cdf67 100644 --- a/sandbox/router/sandbox-routes.ts +++ b/sandbox/router/sandbox-routes.ts @@ -21,7 +21,7 @@ const componentRoutes: RouteRecordRaw[] = [ component: () => import('../pages/SandboxButton.vue'), }, { - path: 'card', + path: '/card', name: 'card', meta: { title: 'Card Sandbox' }, component: () => import('../pages/SandboxCard.vue'),