独享路由守卫使用方法123456789101112beforeEnter:(to, from, next) => { console.log('beforeEnter',to, from) if(to.meta.isAuth){ //判断当前路由是否需要进行权限控制 if(localStorage.getItem('school')==='atguigu'){ next() }else{ alert('学校名不对,没有查看权限!') } }else{ next() }}