vue 避免多次点击导航报错

// 避免多次点击导航报错

const originalPush = VueRouter.prototype.push;

VueRouter.prototype.push = function push(location) {

  return originalPush.call(this, location).catch(err => err);

};

你可能感兴趣的:(vue 避免多次点击导航报错)