opportunities.route.js 515 B

12345678910111213141516171819202122
  1. export default [
  2. {
  3. path: 'opportunities',
  4. name: 'OpportunitiesPage',
  5. component: () => import('src/pages/opportunity/OpportunitiesPanel.vue'),
  6. meta: {
  7. title: 'opportunities.title',
  8. requireAuth: true,
  9. requiredPermission: 'config.custom_schedule',
  10. breadcrumbs: [
  11. {
  12. name: 'DashboardPage',
  13. title: 'ui.navigation.dashboard'
  14. },
  15. {
  16. name: 'OpportunitiesPage',
  17. title: 'opportunities.title'
  18. }
  19. ]
  20. }
  21. }
  22. ]