(not found) init not found page

This commit is contained in:
2021-03-21 16:46:33 +01:00
parent ecd615471e
commit 145cdd8984
3 changed files with 49 additions and 0 deletions

View File

@@ -46,6 +46,12 @@ const routes: Array<RouteRecordRaw> = [
path: '/about',
name: 'About',
component: () => import(/* webpackChunkName: "about" */ '@/views/About.vue')
},
{
path: '/:catchAll(.*)',
name: 'SpaceCowboy',
component: () =>
import(/* webpackChunkName: "space-cowboy" */ '@/views/SpaceCowboy.vue')
}
]