解决 Avoided redundant navigation to current location:
直接在 router下的index文件中加入下边的代码: 
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (location) {
  return originalPush.call(this, location).catch(err => err)
}
 

相关文章:

  • 2022-02-05
  • 2022-12-23
  • 2023-01-30
  • 2022-12-23
  • 2022-12-23
  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
  • 2022-12-23
  • 2022-12-23
  • 2021-04-24
  • 2021-12-18
相关资源
相似解决方案