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', } } ] }]