vue项目的登录跳转代码
Posted aidixie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue项目的登录跳转代码相关的知识,希望对你有一定的参考价值。
router.beforeEach((to, from, next) => { if (to.matched.length === 0) { next(‘/error404‘) } else { if (!sessionStorage.getItem(‘sid‘)&&to.path!="/login") { next(‘/login‘) } else { next() } } });
一定要验证页面是不是login页面,否则会陷入进入login页面的死循环
以上是关于vue项目的登录跳转代码的主要内容,如果未能解决你的问题,请参考以下文章