Vue组件多次点击报错Avoided redundant navigation to current location: “/profile“.
报错提示profile组件避免了到当前位置的冗余导航。
在VueRouter后添加
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
解决报错