vue-router点击多次路由报错解决方法
2020-08-10 本文已影响0人
4ANH
点击多次同一页面控制台抛出错误
import Router from 'vue-router';
const originalPush = Router.prototype.push;
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}