| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- export default [
- {
- path: "/associado/perfil",
- name: "MeuPerfilPage",
- component: () => import("pages/associado/profile/ProfilePage.vue"),
- meta: {
- title: { value: "ui.navigation.meu_perfil", translate: true },
- description: { value: "page.associado.profile.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "MeuPerfilPage", title: "ui.navigation.meu_perfil", translate: true }],
- },
- },
- {
- path: "/associado/convenios",
- name: "ConveniosPage",
- component: () => import("pages/associado/convenios/ConveniosPage.vue"),
- meta: {
- title: { value: "ui.navigation.convenios", translate: true },
- description: { value: "page.associado.convenios.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "ConveniosPage", title: "ui.navigation.convenios", translate: true }],
- },
- },
- {
- path: "/associado/loja",
- name: "AssociadoLojaPage",
- component: () => import("pages/associado/loja/AssociadoLojaPage.vue"),
- meta: {
- title: { value: "ui.navigation.loja", translate: true },
- description: { value: "page.associado.loja.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "AssociadoLojaPage", title: "ui.navigation.loja", translate: true }],
- },
- },
- {
- path: "/associado/interesses",
- name: "AssociadoInteressesPage",
- component: () => import("pages/associado/interesses/InteressesPage.vue"),
- meta: {
- title: { value: "ui.navigation.meus_interesses", translate: true },
- description: { value: "page.associado.interesses.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "AssociadoInteressesPage", title: "ui.navigation.meus_interesses", translate: true }],
- },
- },
- {
- path: "/associado/agendamentos",
- name: "AssociadoAgendamentosPage",
- component: () => import("pages/associado/agendamentos/AgendamentosPage.vue"),
- meta: {
- title: { value: "ui.navigation.meus_agendamentos", translate: true },
- description: { value: "page.associado.agendamentos.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "AssociadoAgendamentosPage", title: "ui.navigation.meus_agendamentos", translate: true }],
- },
- },
- {
- path: "/associado/notificacoes",
- name: "NotificacoesAssociadoPage",
- component: () => import("pages/associado/notificacoes/NotificacoesAssociadoPage.vue"),
- meta: {
- title: { value: "ui.navigation.notifications", translate: true },
- description: { value: "page.associado.notificacoes.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "NotificacoesAssociadoPage", title: "ui.navigation.notifications", translate: true }],
- },
- },
- ];
|