chore: update readme.md

This commit is contained in:
vben
2020-10-19 21:18:13 +08:00
parent a207cafec9
commit 2fbc450414
7 changed files with 86 additions and 68 deletions

View File

@@ -27,28 +27,6 @@ const menu: MenuModule = {
},
],
},
// {
// path: '/excel',
// name: 'excel',
// children: [
{
path: '/customExport',
name: '选择导出格式',
},
{
path: '/jsonExport',
name: 'JSON数据导出',
},
{
path: '/arrayExport',
name: 'Array数据导出',
},
{
path: '/importExcel',
name: '导入',
},
// ],
// },
],
},
};

View File

@@ -0,0 +1,29 @@
import type { MenuModule } from '/@/router/types.d';
const menu: MenuModule = {
orderNo: 500,
menu: {
name: 'Excel',
path: '/excel',
children: [
{
path: '/customExport',
name: '选择导出格式',
},
{
path: '/jsonExport',
name: 'JSON数据导出',
},
{
path: '/arrayExport',
name: 'Array数据导出',
},
{
path: '/importExcel',
name: '导入',
},
// ],
// },
],
},
};
export default menu;