From 5dec585d4eed79ac75b8da59cb43bb15933703cb Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 22 Nov 2021 19:12:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 ++ static/app.js | 9 +++++---- static/template/index.vue | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 72bf8ab42..cf6824578 100644 --- a/index.html +++ b/index.html @@ -19,9 +19,11 @@ +
+ \ No newline at end of file diff --git a/static/app.js b/static/app.js index 5bf85f8b2..0acd35c44 100644 --- a/static/app.js +++ b/static/app.js @@ -29,22 +29,23 @@ }); router.beforeEach(function (to, fr, next) { - console.log(fr.fullPath, '-- to -->', to.fullPath) let page = to.fullPath; if (to.fullPath === '/') { page = './static/template/index.vue'; } - if (router.hasRoute(to.fullPath)) { + let name = page.replace(/[.\/]+/g, '_'); + if (router.hasRoute(name)) { next(); } else { - router.addRoute({name: to.fullPath, path: to.fullPath, component: loadVueFile(page)}); - next({name: to.fullPath}); + router.addRoute({name: name, path: to.fullPath, component: loadVueFile(page)}); + next({name: name}); } }); router.afterEach(function (to) { + console.log('afterEach', to); if (router.hasRoute(to.fullPath)) { router.removeRoute(to.fullPath) } diff --git a/static/template/index.vue b/static/template/index.vue index 2c8b8df8b..f426e5c4b 100644 --- a/static/template/index.vue +++ b/static/template/index.vue @@ -9,7 +9,7 @@ export default { name: "index", data() { return { - userName: "张三32" + userName: "张三" } }, created() {