.matched如何在Vue js中的元数据的导航卫士中工作?

时间:2018-12-25 18:21:01

标签: javascript node.js reactjs authentication vue.js

const loggedIn = false

router.beforeEach((to, from, next) => {
  if (to.matched.some(reocrd => reocrd.meta.auth) && !loggedIn) {
    next({
      name: 'home'
    })
  } else {
    next()
  }
})

如何匹配某些作品? 我已将我的两条路线的meta中的auth设置为true,我想知道这是如何工作的?

0 个答案:

没有答案