vue routes refactoring

This commit is contained in:
Peter Papp
2021-08-20 17:00:35 +02:00
parent fb6dfbe7b4
commit c697f8a451
9 changed files with 780 additions and 701 deletions
+13
View File
@@ -0,0 +1,13 @@
const routesOthers = [
{
name: 'NotFound',
path: '*',
component: () =>
import(/* webpackChunkName: "chunks/not-found" */ '../views/NotFound'),
meta: {
requiresAuth: false
},
},
]
export default routesOthers