navbar.route.js 829 B

123456789101112131415161718192021222324252627282930313233343536
  1. export default [
  2. {
  3. path: "pagamentos",
  4. name: "PaymentsPage",
  5. component: () => import("src/pages/payments/PaymentsPage.vue"),
  6. },
  7. {
  8. path: "agenda",
  9. name: "CalendarPage",
  10. component: () => import("src/pages/calendar/CalendarPage.vue"),
  11. },
  12. {
  13. path: "perfil",
  14. name: "ProfilePage",
  15. component: () => import("src/pages/profile/ProfilePage.vue"),
  16. },
  17. {
  18. path: "opportunities",
  19. name: "OpportunitiesPage",
  20. component: () => import("src/pages/opportunities/OpportunitiesPage.vue"),
  21. meta: {
  22. title: "Oportunidades",
  23. requireAuth: true,
  24. breadcrumbs: [
  25. {
  26. name: "DashboardPage",
  27. title: "ui.navigation.dashboard",
  28. },
  29. {
  30. name: "OpportunitiesPage",
  31. title: "Oportunidades",
  32. },
  33. ],
  34. },
  35. },
  36. ];