| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import type { AppRouteModule } from '/@/router/types';
- import { PAGE_LAYOUT_COMPONENT } from '/@/router/constant';
- const excel: AppRouteModule = {
- layout: {
- path: '/excel',
- name: 'Excel',
- component: PAGE_LAYOUT_COMPONENT,
- redirect: '/excel/customExport',
- meta: {
- icon: 'mdi:microsoft-excel',
- title: 'routes.demo.excel.excel',
- },
- },
- routes: [
- {
- path: '/customExport',
- name: 'CustomExport',
- component: () => import('/@/views/demo/excel/CustomExport.vue'),
- meta: {
- title: 'routes.demo.excel.customExport',
- },
- },
- {
- path: '/jsonExport',
- name: 'JsonExport',
- component: () => import('/@/views/demo/excel/JsonExport.vue'),
- meta: {
- title: 'routes.demo.excel.jsonExport',
- },
- },
- {
- path: '/arrayExport',
- name: 'ArrayExport',
- component: () => import('/@/views/demo/excel/ArrayExport.vue'),
- meta: {
- title: 'routes.demo.excel.arrayExport',
- },
- },
- {
- path: '/importExcel',
- name: 'ImportExcel',
- component: () => import('/@/views/demo/excel/ImportExcel.vue'),
- meta: {
- title: 'routes.demo.excel.importExcel',
- },
- },
- ],
- };
- export default excel;
|