1. 程式人生 > >vue寫後臺管理的時候登陸驗證

vue寫後臺管理的時候登陸驗證

router.beforeEach((to, from, next) => {
  if(to.path === '/'){
    next()
  }
  else{
    if(to.meta.requiresAuth && !sessionStorage.getItem('iphone')){
      next({
        path: '/'
      })
    }
    else{
      next()
    }
  }
})

感覺他寫的比較詳細,防止忘記