1. 程式人生 > 其它 >vue路由重複點選報錯的解決方法

vue路由重複點選報錯的解決方法

技術標籤:vue

vue路由重複點選報錯的解決方法

錯誤圖片

Alt

解決方法

//獲取原型物件上的push函式
const originalPush = VueRouter.prototype.push
//修改原型物件中的push方法
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}

插入位置

Alt