X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Frouter.js;h=1eb88f913a20f8b6c8a9687e9ba0538fdddd7018;hb=652f40de91b2694093ba9755f24b76b81caff232;hp=26bdee9441fdfb34452c6f394eff187aa71adc3d;hpb=afd3240d89a2f6191fe9426960dc0c1667b40c77;p=vchess.git diff --git a/client/src/router.js b/client/src/router.js index 26bdee94..1eb88f91 100644 --- a/client/src/router.js +++ b/client/src/router.js @@ -68,7 +68,7 @@ const router = new Router({ { path: "/analyze/:vname([a-zA-Z0-9]+)", name: "analyze", - component: loadView("Game"), + component: loadView("Analyze"), }, { path: "/about", @@ -86,9 +86,6 @@ router.beforeEach((to, from, next) => { store.state.conn.send(JSON.stringify({code: "pagechange", page: to.path})); } next(); - // TODO?: redirect to current game (through GameStorage.getCurrent()) if any? - // (and if the URL doesn't already match it) (use next("/game/GID")) - //https://router.vuejs.org/guide/advanced/navigation-guards.html#global-before-guards }); export default router;