* initialisation of all libraries

feature: #1
This commit is contained in:
2022-12-30 00:45:54 +01:00
parent b25ca09f32
commit af3b12344f
22 changed files with 7736 additions and 153 deletions

View File

@@ -12,10 +12,13 @@ const router = createRouter({
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
// this page is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue')
},
{
path: '/:pathMatch(.*)*',
name: 'notfound',
component: () => import('../components/PageNotFound.vue')
}
]
})