前置守卫是为了验证用户信息真实性,一些内容只能在用户登陆以后才能进行查看,例如个人中心,我的购物车,等个人页面,非隐私页面 用router.beforeEach进行验证,这个方法必须写在router实例之后 三个参数 to===到哪里去 from===从哪里来 next===放行 router.beforeEach((to,from,next)=>{ if(to.matched.some((route)=>route.meta.requireAuth)){ if(localStorage.ge…