diff --git a/sandbox/index.ts b/sandbox/index.ts index 7bf1e9db22..aadf0cc21a 100644 --- a/sandbox/index.ts +++ b/sandbox/index.ts @@ -48,6 +48,7 @@ const sandboxAppLinks: SandboxNavigationItem[] = ([ { name: 'KTextarea', to: { name: 'textarea' } }, { name: 'KToaster', to: { name: 'toaster' } }, { name: 'KTreeList', to: { name: 'treelist' } }, + { name: 'KTableData 2', to: { name: 'table-data-2' } }, ]) // Provide the app links to the SandboxLayout components diff --git a/sandbox/pages/SandboxTableData2.vue b/sandbox/pages/SandboxTableData2.vue new file mode 100644 index 0000000000..3150a601ba --- /dev/null +++ b/sandbox/pages/SandboxTableData2.vue @@ -0,0 +1,148 @@ + + + + + + Delete Zach (revalidate) + + + Delete Zach (no revalidate) + + + Toggle Table + + + + + + + + + + + diff --git a/sandbox/router/sandbox-routes.ts b/sandbox/router/sandbox-routes.ts index b417c85987..7c53eb8ad0 100644 --- a/sandbox/router/sandbox-routes.ts +++ b/sandbox/router/sandbox-routes.ts @@ -212,6 +212,12 @@ const componentRoutes: RouteRecordRaw[] = [ meta: { title: 'Tree List Sandbox' }, component: () => import('../pages/SandboxTreeList.vue'), }, + { + path: '/table-data-2', + name: 'table-data-2', + meta: { title: 'Table Data 2 Sandbox' }, + component: () => import('../pages/SandboxTableData2.vue'), + }, ] export default componentRoutes