feat: 404 handler + page

Signed-off-by: Corentin Thomasset <corentin.thomasset74@gmail.com>
This commit is contained in:
Corentin Thomasset 2020-06-07 23:11:18 +02:00
parent 12a0d93c85
commit 432ac7dd1c
2 changed files with 60 additions and 0 deletions

View file

@ -121,6 +121,11 @@ const routes = [
path: '/about',
name: 'About',
component: () => import('./routes/About.vue')
},
{
path: '*',
name: '404',
component: () => import('./routes/NotFound.vue')
}
]