引入 VueRouter,访问多次访问同一个路由,就会报: Error: Avoided redundant navigation to current location:
的错。虽然不影响功能,可不好看呀。
处理
在引入 VueRouter 的地方,处理:
// 解决点击重复路由报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
Vue.use(VueRouter);
…