VUE - 导航守卫

router.beforeEach((to, from, next) => {
  
  if(to.path!='/login' && localStorage.token==undefined){
      next('/login')
      return
  }
  next()
})
posted @ 2019-12-19 21:18  武卡卡  阅读(114)  评论(0编辑  收藏  举报