解决 NavigationDuplicated: Avoided redundant navigation to current location: "/"

909 阅读1分钟
  • Vue 中路由报错 NavigationDuplicated: Avoided redundant navigation to current location: "/",原因是路由重复。

    image.png

  • 解决方案

    router 文件夹下的 index.js 中加入下面代码,解决!

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

    image.png