vben
2020-11-13 1d45617e4a311e339eb008a629cd342cd673ecf1
提交 | 用户 | age
2fbc45 1 import type { MenuModule } from '/@/router/types.d';
V 2 const menu: MenuModule = {
3   orderNo: 500,
4   menu: {
5     name: 'Excel',
6     path: '/excel',
7     children: [
8       {
f75425 9         path: 'customExport',
2fbc45 10         name: '选择导出格式',
V 11       },
12       {
f75425 13         path: 'jsonExport',
2fbc45 14         name: 'JSON数据导出',
V 15       },
16       {
f75425 17         path: 'arrayExport',
2fbc45 18         name: 'Array数据导出',
V 19       },
20       {
f75425 21         path: 'importExcel',
2fbc45 22         name: '导入',
V 23       },
24     ],
25   },
26 };
27 export default menu;