feat(page): added 404 page

This commit is contained in:
Corentin Thomasset 2022-04-05 17:40:35 +02:00
parent 655019cf23
commit 3db4f91c27
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
3 changed files with 36 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import { layouts } from './layouts/index';
import { createRouter, createWebHistory } from 'vue-router';
import HomePage from './pages/Home.page.vue';
import NotFound from './pages/404.page.vue';
import { tools } from './tools';
const router = createRouter({
@ -12,6 +13,7 @@ const router = createRouter({
component: HomePage,
},
...tools.map(({ path, name, component, ...config }) => ({ path, name, component, meta: { isTool: true, layout: layouts.toolLayout, name, ...config } })),
{ path: '/:pathMatch(.*)*', name: 'NotFound', component: NotFound },
],
});