Redirected when going from "/login?redirect=%2Fhome" to "/home" via a navigation guard.

在跳转页面时报错:Redirected when going from "/login?redirect=%2Fhome" to "/home" via a navigation guard.


报错信息

解决方法:

方法一:

更换vue-router版本为: npm i [email protected] -S

方法二:

更换vue-router版本为: npm i [email protected] -S
import Router from 'vue-router'
const routerPush = Router.prototype.push
Router.prototype.push = function push(location) {
  return routerPush.call(this, location).catch(error=> error)
}

你可能感兴趣的:(Redirected when going from "/login?redirect=%2Fhome" to "/home" via a navigation guard.)