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)
}

版权声明:本文为wangfujuan68原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。