add: terns & notice privacity

This commit is contained in:
Alexandro Uc Santos
2024-01-19 20:35:54 -06:00
parent d66c01ff74
commit 6c9c3c9f7d
4 changed files with 305 additions and 2 deletions

View File

@@ -31,6 +31,22 @@ const router = createRouter({
path: 'registro-empresa',
name: 'register-company',
component: () => import('../views/CompleteRegisterView.vue')
},
]
},
{
path: '/publico',
name: 'public',
children: [
{
path: 'terminos-y-condiciones',
name: 'terms-conditions',
component: () => import('../views/TermsAndConditionsView.vue')
},
{
path: 'eviso-de-privacidad',
name: 'notice-privacy',
component: () => import('../views/NoticeOfPrivacyView.vue')
}
]
},