1.错误
- 当用户重复点击相同菜单的时候可能会报:Error: Avoided redundant navigation to current location: “your route url” 的错误。
2. 解决
- 需要在路由配置的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)
}