- vue:V2.5.2
- vue-router版本:V3.0.1
//获取原型对象上的push函数
const originalPush = VueRouter.prototype.push
//修改原型对象中的push方法
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch((err) => err)
}
标签:vue,location,VueRouter,push,router,prototype
From: https://www.cnblogs.com/djsz3y/p/17024324.html