This commit is contained in:
zyy 2019-11-25 10:44:55 +08:00
commit 811e919236

View File

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