// 解决重定向报错问题const originPathPush = VueRouter.prototype.push;VueRouter.prototype.push = ...
IP属地:北京
// 解决重定向报错问题const originPathPush = VueRouter.prototype.push;VueRouter.prototype.push = ...
//获取原型对象上的push函数 const originalPush = Router.prototype.push //修改原型对象中的push方法 Router.pro...