feat(page) added the /about page

This commit is contained in:
Corentin Thomasset 2022-04-16 10:46:52 +02:00
parent dbce46b470
commit 6154df2789
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 147 additions and 1 deletions

View file

@ -17,6 +17,11 @@ const router = createRouter({
name: 'home',
component: HomePage,
},
{
path: '/about',
name: 'about',
component: () => import('./pages/About.vue'),
},
...toolsRoutes,
...toolsRedirectRoutes,
{ path: '/:pathMatch(.*)*', name: 'NotFound', component: NotFound },