diff 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
line wrap: on
line diff
--- a/client/src/router.js	Mon Mar 25 11:03:23 2019 +0100
+++ b/client/src/router.js	Mon Mar 25 11:42:31 2019 +0100
@@ -215,7 +215,7 @@
     },
     {
       path: "*",
-      component: Login
+      component: () => import("./components/PageNotFound.vue")
     }
   ]
 });