mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
更新代码
This commit is contained in:
parent
266122e4e2
commit
a19305a922
@ -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) {
|
||||
|
8
static/plugs/core/vue.min.js
vendored
8
static/plugs/core/vue.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user