vue 首次加载项目,控制台报错: Redirected when going from "/" to "/login"

第一次加载加载页面时报错如下:
Redirected when going from "/" to "/login" via a navigation guard.

后续在地址栏直接添加/login,index,错误页面等均正常无报错.

路由配置如下:

router.beforeEach((to, from, next) => {

if (token) {

if (to.path == '/login') {

next('/index')

} else if (to.path === null) {

next('*')

} else {

next()

}

} else {

if (to.path == '/login') {

next()

}

}

})

还会出现路由无限循环跳转的情况.
请求大家的帮助.

回答

if (token) {

} else {

if (to.path == '/login') {

next()

}

}

以上是 vue 首次加载项目,控制台报错: Redirected when going from "/" to "/login" 的全部内容, 来源链接: utcz.com/a/24885.html

回到顶部