路由守卫一直报这个错,怎么办?

img
从首页跳到个人中心,一直报这个错,怎么办?路由守卫一直拦着?

直接复制下面代码到router文件下index.js,试试看

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)

}

你贴一下代码看看