From 0d92a31c5c9b95c3b5add7395df18f63488c5500 Mon Sep 17 00:00:00 2001 From: Justineo Date: Thu, 19 Dec 2024 15:03:08 +0800 Subject: [PATCH] chore: add a new sandbox for ktabledata --- sandbox/index.ts | 1 + sandbox/pages/SandboxTableData2.vue | 148 ++++++++++++++++++++++++++++ sandbox/router/sandbox-routes.ts | 6 ++ 3 files changed, 155 insertions(+) create mode 100644 sandbox/pages/SandboxTableData2.vue 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 @@ + + + + + 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