修改代码

This commit is contained in:
Anyon 2021-11-22 19:12:40 +08:00
parent a19305a922
commit 5dec585d4e
3 changed files with 8 additions and 5 deletions

View File

@ -19,9 +19,11 @@
</head> </head>
<body> <body>
<div id="app"> <div id="app">
<layout></layout> <layout></layout>
</div> </div>
</body> </body>
</html> </html>

View File

@ -29,22 +29,23 @@
}); });
router.beforeEach(function (to, fr, next) { router.beforeEach(function (to, fr, next) {
console.log(fr.fullPath, '-- to -->', to.fullPath)
let page = to.fullPath; let page = to.fullPath;
if (to.fullPath === '/') { if (to.fullPath === '/') {
page = './static/template/index.vue'; page = './static/template/index.vue';
} }
if (router.hasRoute(to.fullPath)) { let name = page.replace(/[.\/]+/g, '_');
if (router.hasRoute(name)) {
next(); next();
} else { } else {
router.addRoute({name: to.fullPath, path: to.fullPath, component: loadVueFile(page)}); router.addRoute({name: name, path: to.fullPath, component: loadVueFile(page)});
next({name: to.fullPath}); next({name: name});
} }
}); });
router.afterEach(function (to) { router.afterEach(function (to) {
console.log('afterEach', to);
if (router.hasRoute(to.fullPath)) { if (router.hasRoute(to.fullPath)) {
router.removeRoute(to.fullPath) router.removeRoute(to.fullPath)
} }

View File

@ -9,7 +9,7 @@ export default {
name: "index", name: "index",
data() { data() {
return { return {
userName: "张三32" userName: "张三"
} }
}, },
created() { created() {