diff --git a/.npmignore b/.npmignore index fec953c4a..d73d4ac34 100644 --- a/.npmignore +++ b/.npmignore @@ -36,6 +36,7 @@ !dist/font/**/* !dist/images/* !dist/images/**/* +!dist/router.js !babel.config.js !babel.config.ie8.js !.eslintrc \ No newline at end of file diff --git a/dist/router.js b/dist/router.js index 04c7b5408..c0e0469a6 100644 --- a/dist/router.js +++ b/dist/router.js @@ -3128,6 +3128,15 @@ this.$router = this._router = BI.Router.$router = $router = new VueRouter({ routes: this.options.routes }); + this.$router.beforeEach(function (to, from, next) { + if (to.matched.length === 0) { + //如果上级也未匹配到路由则跳转主页面,如果上级能匹配到则转上级路由 + from.path ? next({ path: from.path }) : next('/'); + } else { + //如果匹配到正确跳转 + next(); + } + }); this.$router.afterEach(function () { cbs.forEach(function (cb) {cb();}); });