解决 Avoided redundant navigation to current location: “/“.报错

解决 Avoided redundant navigation to current location: “/“.报错_第1张图片
重复定位路由导致的错误,是vue-router版本的问题,不影响使用,但是看着有点难受

import Vue from 'vue'
import VueRouter from 'vue-router'
// 解决路由访问重复时报错问题:
const originalPush = VueRouter.prototype.push
   VueRouter.prototype.push = function push(location) {
     
   return originalPush.call(this, location).catch(err => err)
}

Vue.use(VueRouter)

我用这个没有生效,把push改成replace好了,实在不行就俩都写,嘿嘿哈

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

你可能感兴趣的:(vue)