| 123456789101112131415161718192021222324252627282930313233343536 |
- export default [
- {
- path: "pagamentos",
- name: "PaymentsPage",
- component: () => import("src/pages/payments/PaymentsPage.vue"),
- },
- {
- path: "agenda",
- name: "CalendarPage",
- component: () => import("src/pages/calendar/CalendarPage.vue"),
- },
- {
- path: "perfil",
- name: "ProfilePage",
- component: () => import("src/pages/profile/ProfilePage.vue"),
- },
- {
- path: "opportunities",
- name: "OpportunitiesPage",
- component: () => import("src/pages/opportunities/OpportunitiesPage.vue"),
- meta: {
- title: "Oportunidades",
- requireAuth: true,
- breadcrumbs: [
- {
- name: "DashboardPage",
- title: "ui.navigation.dashboard",
- },
- {
- name: "OpportunitiesPage",
- title: "Oportunidades",
- },
- ],
- },
- },
- ];
|