vue项目中没有token进入其他页面会重置到登录页,但是有时候有的页面不需要验证token解决方法
1.在你的路由拦截main.js中router.beforeEach中(有的不在main.js中以我的为例)router.beforeEach((to,from,next)=>{vartoken=localStorage.getItem('token')//存储tokenif(to.meta.name){document.title=to.meta.name;//路由中设置页面标题if(token