add: faqs added

This commit is contained in:
Alexandro Uc Santos
2024-01-27 19:56:19 -06:00
parent 57fa36be4d
commit c0e9b12bae
10 changed files with 298 additions and 92 deletions

View File

@@ -1,5 +1,6 @@
import { createRouter, createWebHistory } from 'vue-router'
import AuthLayout from '../layouts/AuthLayout.vue'
import PublicLayout from '../layouts/PublicLayout.vue'
// import {useAuthStore} from '../stores/auth';
// const authStore = useAuthStore();
@@ -37,6 +38,7 @@ const router = createRouter({
{
path: '/publico',
name: 'public',
component: PublicLayout,
children: [
{
path: 'terminos-y-condiciones',
@@ -47,6 +49,11 @@ const router = createRouter({
path: 'eviso-de-privacidad',
name: 'notice-privacy',
component: () => import('../views/NoticeOfPrivacyView.vue')
},
{
path: 'faqs',
name: 'faqs',
component: () => import('../views/FaqsView.vue')
}
]
},