美文网首页
Vue生命周期

Vue生命周期

作者: 只会ctrl_c_v | 来源:发表于2022-03-10 12:03 被阅读0次

    一、父子组件

    image.png

    所以:
    父beforeCreate > 父created > 父beforeMount > 子beforeCreate > 子created > 子beforeMount > 子mounted > 父mounted

    二、属性状态 [官方源码链接]

    image.png

    所以:
    props - > methods - > data - > computed - > watch

    三、生命周期 + 属性状态

    beforeCreate > props - > methods - > data - > computed - > watch > created > beforeMount > mounted

    相关文章

      网友评论

          本文标题:Vue生命周期

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