wip: Table component developing

This commit is contained in:
kailong321200875
2022-02-07 17:32:37 +08:00
parent 9b4b317817
commit 7b7fcfef59
16 changed files with 1358 additions and 1136 deletions

View File

@@ -131,6 +131,25 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
}
]
},
{
path: 'table',
component: getParentLayout(),
name: 'TableDemo',
meta: {
title: t('router.table'),
alwaysShow: true
},
children: [
{
path: 'default-table',
component: () => import('@/views/Components/Table/DefaultTable.vue'),
name: 'DefaultTable',
meta: {
title: t('router.defaultTable')
}
}
]
},
{
path: 'search',
component: () => import('@/views/Components/Search.vue'),