Files
tgCrewLanding/src/router/routes.js
CCTVcalc 4771b374ac
All checks were successful
continuous-integration/drone/push Build is passing
add docs
2025-08-11 17:50:52 +03:00

24 lines
449 B
JavaScript

const routes = [
{
name: 'main',
path: '/',
component: () => import('layouts/MainLayout.vue')
},
{
name: 'privacy-policy',
path: '/privacy-policy',
component: () => import('pages/DocPage.vue')
},
{
name: 'terms',
path: '/terms-of-use',
component: () => import('pages/DocPage.vue')
},
{
path: '/:catchAll(.*)*',
component: () => import('pages/ErrorNotFound.vue')
}
]
export default routes