在跳转页面时报错:Redirected when going from "/login?redirect=%2Fhome" to "/home" via a navigation guard.
报错信息
解决方法:
方法一:
更换vue-router版本为: npm i vue-router@3.0 -S
方法二:
更换vue-router版本为: npm i vue-router@3.0 -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)
}