Added 404 page

This commit is contained in:
2020-11-27 01:50:39 +01:00
parent 88c38cf13e
commit 699d5e2e7f
3 changed files with 43 additions and 0 deletions

View File

@@ -63,6 +63,16 @@ const routes = [
return !authorized;
}
}
},
{
path: '*',
name: 'NotFound',
component: () => import(/* webpackChunkName: "about" */ '../views/NotFound'),
meta: {
allowVisit() {
return true;
}
}
}
]