Avoided redundant navigation to current location: "/users"
作者:互联网
问题产生的原因:在Vue导航菜单中,重复点击一个菜单,即重复触发一个相同的路由,会报错,但不影响功能
解决:在router的配置文件中加入如下代码:
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
标签:菜单,users,err,redundant,current,originalPush,push,prototype,location 来源: https://www.cnblogs.com/wanerhu/p/14016652.html