comparison client/src/router.js @ 2790:563bcd8b7d7b

Page_not_found: implementation of rudimentary 404 page
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 25 Mar 2019 11:42:31 +0100
parents a4962c302af0
children d6c90d2c8c8d
comparison
equal deleted inserted replaced
2789:c1e832f77726 2790:563bcd8b7d7b
213 } 213 }
214 } 214 }
215 }, 215 },
216 { 216 {
217 path: "*", 217 path: "*",
218 component: Login 218 component: () => import("./components/PageNotFound.vue")
219 } 219 }
220 ] 220 ]
221 }); 221 });
222 222
223 router.beforeEach((to, from, next) => { 223 router.beforeEach((to, from, next) => {