vue-router导航守卫(三)——路由独享守卫
路由独享守卫,是指在单个路由配置的时候也可以设置的钩子函数,其位置就是下面示例中的位置,也就是像Foo这样的组件都存在这样的钩子函数。目前他只有一个钩子函数beforeEnter:
const router = new VueRouter({ routes: [ { path: '/foo', component: Foo, beforeEnter: (to, from, next) => { // ... } } ] })
【beforeEnter】
和beforeEach完全相同,如果都设置则在beforeEach之后紧随执行,参数to、from、next