连续点击多次路由报错解决方法

1
2
3
4
5
const originalPush = VueRouter.prototype.push;

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

编辑文章✏