vueRouter push方法重写
作者:互联网
// vue相同路由跳转报错问题处理
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location, onResolve, onReject) {
if(onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
return originalPush.call(this, location).catch(err => err)
}
标签:VueRouter,onResolve,originalPush,vueRouter,push,重写,onReject,location 来源: https://www.cnblogs.com/zerofan/p/15388080.html