| 12345678910111213141516171819202122 |
- export default [
- {
- path: 'opportunities',
- name: 'OpportunitiesPage',
- component: () => import('src/pages/opportunity/OpportunitiesPanel.vue'),
- meta: {
- title: 'opportunities.title',
- requireAuth: true,
- requiredPermission: 'config.custom_schedule',
- breadcrumbs: [
- {
- name: 'DashboardPage',
- title: 'ui.navigation.dashboard'
- },
- {
- name: 'OpportunitiesPage',
- title: 'opportunities.title'
- }
- ]
- }
- }
- ]
|