first commit

This commit is contained in:
2023-02-23 14:06:30 +01:00
commit bf8ae41804
33 changed files with 5820 additions and 0 deletions

19
src/router/routes.js Normal file
View File

@@ -0,0 +1,19 @@
const routes = [
{
path: '/',
component: () => import('layouts/MainLayout.vue'),
children: [
{ path: '', component: () => import('pages/IndexPage.vue') }
]
},
// Always leave this as last one,
// but you can also remove it
{
path: '/:catchAll(.*)*',
component: () => import('pages/ErrorNotFound.vue')
}
]
export default routes