Update app.js

This commit is contained in:
Anyon 2021-11-22 17:46:24 +08:00
parent 0d6942901a
commit e71331015e

View File

@ -30,6 +30,7 @@
router.beforeEach(function (to, fr, next) { router.beforeEach(function (to, fr, next) {
console.log(fr.fullPath, '-- to -->', to.fullPath) console.log(fr.fullPath, '-- to -->', to.fullPath)
if (router.hasRoute(to.fullPath)) { if (router.hasRoute(to.fullPath)) {
next(); next();
} else { } else {
@ -37,6 +38,7 @@
router.addRoute({name: to.fullPath, path: to.fullPath, component: loadVueFile(page)}); router.addRoute({name: to.fullPath, path: to.fullPath, component: loadVueFile(page)});
next({name: to.fullPath}); next({name: to.fullPath});
} }
}); });
router.afterEach(function (to) { router.afterEach(function (to) {