X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Frouter.js;h=04c8f06cbfe73bced6962278b588ecd5748d4734;hb=0705a80c63aec2c60ee6a674b982f6a11d2d50bd;hp=c5afb17d1343c8db2fd834d645314089e068b57c;hpb=6808d7a16ec1e761c6a2dffec2281c96953e4d89;p=vchess.git diff --git a/client/src/router.js b/client/src/router.js index c5afb17d..04c8f06c 100644 --- a/client/src/router.js +++ b/client/src/router.js @@ -1,6 +1,5 @@ import Vue from "vue"; import Router from "vue-router"; -import Hall from "./views/Hall.vue"; Vue.use(Router); @@ -14,7 +13,7 @@ const router = new Router({ { path: "/", name: "hall", - component: Hall + component: loadView("Hall") }, { path: "/variants", @@ -62,9 +61,9 @@ const router = new Router({ component: loadView("About") }, { - path: "/news", - name: "news", - component: loadView("News") + path: "/faq", + name: "faq", + component: loadView("Faq") } ] });