| 12345678910111213141516171819202122232425262728293031323334 |
- import Layout from '@/layout'
- export default [{
- path: '/reports',
- component: Layout,
- children: [
- {
- path: '/reports',
- component: () => import('@/views/report/Reports'),
- name: 'reports',
- meta: {
- title: 'Reports',
- icon: 'reports',
- activeIcon: 'reports-active',
- }
- }
- ],
- },
- {
- path: '/csms-reports',
- component: Layout,
- children: [
- {
- path: '/csms-reports',
- component: () => import('@/views/report/ReportV3'),
- name: 'reports',
- meta: {
- title: 'Reports',
- icon: 'reports',
- activeIcon: 'reports-active',
- }
- }
- ]
- }]
|