第二次点击路由时报错
解决方法
在引入路由的地方配置以下内容
const originalPush = Router.prototype.push
Router.prototype.push = function push(location){
return originalPush.call(this,location).catch(err =>err)
}
在引入路由的地方配置以下内容
const originalPush = Router.prototype.push
Router.prototype.push = function push(location){
return originalPush.call(this,location).catch(err =>err)
}