更新代码

This commit is contained in:
Anyon 2021-11-22 18:32:59 +08:00
parent 266122e4e2
commit a19305a922
3 changed files with 7 additions and 3703 deletions

View File

@ -31,14 +31,17 @@
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)) {
next();
} else {
let page = to.fullPath === '/' ? './static/template/index.vue' : to.fullPath;
router.addRoute({name: to.fullPath, path: to.fullPath, component: loadVueFile(page)});
next({name: to.fullPath});
}
});
router.afterEach(function (to) {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long