vue 路由导航重复跳转报错解决记录

const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}

原文地址:https://www.cnblogs.com/yangxiaoxin/p/14611603.html