在项目开发过程中,当用户重复点击相同菜单的时候可能会报:Error: Avoided redundant navigation to current location: "your route url"
的错误,要解决该报错,需要在路由配置的index.js
中写入以下代码。
import VueRouter from 'vue-router'
Vue.use(VueRouter)
// 解决重复点击相同路由报错
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
这样点击后就不会出现以上的报错了。
网友评论