美文网首页
vue-router生命周期

vue-router生命周期

作者: 为了_理想 | 来源:发表于2019-07-03 20:20 被阅读0次

    vue-router 生命周期

    beforeRoute Enter开始(to, from, next) { }  to从....  from 到....   next 下一次
    beforeRoute Update更新 (to, from, next){ }
    beforeRoute Leave离开  里无 (to, from, next){ }  
    三个参数:
    
    to: Route: 即将要进入的目标 路由对象
    
    from: Route: 当前导航正要离开的路由
    
    next: Function: 一定要调用该方法来 resolve 这个钩子
    

    相关文章

      网友评论

          本文标题:vue-router生命周期

          本文链接:https://www.haomeiwen.com/subject/eghfaqtx.html