问题:
提示报错,在router中应当避免到当前位置的冗余导航
换成人话就是说,重复触发了同一个路由
解决办法:
在页面的路由中配置(router.js)
// 将push进行缓存
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (location) {
return originalPush.call(this, location).catch(err => err)
}