代码提交

This commit is contained in:
joylink_cuiweidong 2019-11-19 17:57:13 +08:00
parent fb81b69471
commit 998fcf7146

View File

@ -876,4 +876,10 @@ router.beforeEach((to, from, next) => {
next();
});
// 兼容 vue-router在3.1.0版本以上的路由跳转使用的是 promise 的方式
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err);
};
export default router;