修改代码

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>
<body>
<div id="app">
<layout></layout>
</div>
</body>
</html>

View File

@ -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)
}

View File

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