多次点击导航,会报错:
重新安装依赖
npm i vue-router@3.0 -S
在use router之前加入如下代码
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
多次点击导航,会报错:
npm i vue-router@3.0 -S
在use router之前加入如下代码
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}