在跳轉頁面時報錯: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)
}
