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() {