14、vue router连续点击多次路由报错解决方法
2019-09-30 本文已影响0人
郑先森
在main.js下添加以下代码:
import Router from 'vue-router'
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}