feat(excel): import/export (#40)

This commit is contained in:
jq002
2020-10-17 18:40:17 +08:00
committed by GitHub
parent 0a2e417bbf
commit c0692b0f43
12 changed files with 617 additions and 0 deletions

View File

@@ -136,5 +136,31 @@ export default {
title: '密码强度组件',
},
},
{
path: '/excel',
name: 'ExcelDemo',
redirect: '/comp/excel/export',
meta: {
title: 'excel',
},
children: [
{
path: 'export',
name: 'Export2Excel',
component: () => import('/@/views/demo/comp/excel/ExportToExcel.vue'),
meta: {
title: 'Export2Excel',
},
},
{
path: 'import',
name: 'ImportExcel',
component: () => import('/@/views/demo/comp/excel/ImportExcel.vue'),
meta: {
title: 'ImportExcel',
},
},
],
},
],
} as AppRouteModule;