其他分享
首页 > 其他分享> > vue父子组件的生命周期执行顺序

vue父子组件的生命周期执行顺序

作者:互联网

加载渲染过程

父beforeCreate->父created->父beforeMount->子beforeCreate->子created->子beforeMount->子mounted->父mounted

子组件更新过程

父beforeUpdate->子beforeUpdate->子updated->父updated

父组件更新过程

父beforeUpdate->父updated

销毁过程

父beforeDestroy->子beforeDestroy->子destroyed->父destroyed

标签:updated,生命周期,beforeCreate,更新过程,beforeUpdate,destroyed,vue,组件
来源: https://blog.csdn.net/m0_65782438/article/details/123197174