ReportsRouter.js 640 B

12345678910111213141516171819202122232425262728293031323334
  1. import Layout from '@/layout'
  2. export default [{
  3. path: '/reports',
  4. component: Layout,
  5. children: [
  6. {
  7. path: '/reports',
  8. component: () => import('@/views/report/Reports'),
  9. name: 'reports',
  10. meta: {
  11. title: 'Reports',
  12. icon: 'reports',
  13. activeIcon: 'reports-active',
  14. }
  15. }
  16. ],
  17. },
  18. {
  19. path: '/csms-reports',
  20. component: Layout,
  21. children: [
  22. {
  23. path: '/csms-reports',
  24. component: () => import('@/views/report/ReportV3'),
  25. name: 'reports',
  26. meta: {
  27. title: 'Reports',
  28. icon: 'reports',
  29. activeIcon: 'reports-active',
  30. }
  31. }
  32. ]
  33. }]