独享路由守卫

使用方法

1
2
3
4
5
6
7
8
9
10
11
12
beforeEnter:(to, from, next) => {
console.log('beforeEnter',to, from)
if(to.meta.isAuth){ //判断当前路由是否需要进行权限控制
if(localStorage.getItem('school')==='atguigu'){
next()
}else{
alert('学校名不对,没有查看权限!')
}
}else{
next()
}
}