Ant Design Vue 报错 Avoided redundant navigation to current location: “/login“
问题描述
页面加载的时候先判断用户是否登录,若未登录,则跳转至登录页面。控制台出现以下错误
解决方法
Vue.use(VueRouter)
//添加下面代码
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
...
原创
2021-02-02 10:42:05 ·
645 阅读 ·
2 评论