为了账号安全,请及时绑定邮箱和手机立即绑定

vue-router 2.0.1钩子函数不能正常的跳转。

vue-router 2.0.1钩子函数不能正常的跳转。

桃花长相依 2018-09-06 09:10:23
如题:router.beforeEach((to, from, next) => {    if (to.matched.some(record => record.meta.requiresAuth)) {        next("/")         console.log(1)     }else {        next()     } })直接跳过了next("/")打印了1,不知是不是bug还是我的写法有问题。
查看完整描述

1 回答

?
白板的微信

TA贡献1883条经验 获得超3个赞

router.beforeEach((to, from, next) => {

    if (to.matched.some(m => m.meta.requiresAuth)) return next('/login')

    next()

  })


查看完整回答
反对 回复 2018-10-23
  • 1 回答
  • 0 关注
  • 549 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信