| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- 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/carteirinha",
- // name: "CarteirinhaPage",
- // component: () => import("pages/associado/carteirinha/CarteirinhaPage.vue"),
- // meta: {
- // title: { value: "ui.navigation.carteirinha", translate: true },
- // description: { value: "page.associado.carteirinha.description", translate: true },
- // requireAuth: true,
- // breadcrumbs: [{ name: "CarteirinhaPage", title: "ui.navigation.carteirinha", translate: true }],
- // },
- // },
- {
- path: "/associado/parceiros",
- name: "AssociadoParceirosPage",
- component: () => import("pages/parceiros-convenios/ParceirosConveniosPage.vue"),
- meta: {
- title: { value: "ui.navigation.partners", translate: true },
- description: { value: "page.associado.parceiros.description", translate: true },
- requireAuth: true,
- breadcrumbs: [{ name: "AssociadoParceirosPage", title: "ui.navigation.partners", translate: true }],
- },
- },
- {
- path: "/associado/convenios",
- name: "ConveniosPage",
- component: () => import("pages/parceiros-convenios/ConveniosMedicosPage.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 }],
- },
- },
- ];
|