码迷,mamicode.com
首页 > 其他好文 > 详细

路由独享-组件内守卫

时间:2018-10-06 13:23:23      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:lse   alert   bsp   const   实例   router   nbsp   one   outer   

路由独享写法:
import VueRouter from ‘vue-router‘
Vue.use(VueRoter)
const router = new VueRouter({
    routes:[
        {path:component:,name:,beforeEnter:((to,next,from)=>{
            alert(‘路由独享-组件内守卫‘)
            next()//跳转
            next(false)//不显示此路由下的组件
        })}
    ],
    mode:‘history‘,
})
组件内守卫:在组件内写
export defalut{
    data(){
        return {
            name:‘tom‘
        }
    },
    beforeRouteEnter((to,from,next)=>{
        //beforeRouteEnter 守卫 不能 访问 this,因为守卫在导航确认前被调用,因此即将登场的新组件还没被创建。
        //可以通过next()回调函数获得组件实例
        next(vm=>{
            vm.name
        })

   })
}

 

路由独享-组件内守卫

标签:lse   alert   bsp   const   实例   router   nbsp   one   outer   

原文地址:https://www.cnblogs.com/chenfan19941111/p/9746918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!