add: faqs added
This commit is contained in:
@@ -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')
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user