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

学习中遇到vue父子组件的生命周期顺序,记录如下:

一,加载渲染过程

父beforeCreate=>父created=>父beforeMount=>子beforeCreate=>子created=>子beforeMount=>子mounted=>父mounted

二,子组件更新过程

父beforeUpdate=>子beforeUpdate=>子updated=>父updated

三,父组件更新过程

父beforeUpdate=>父updated

四,销毁过程

父beforeDestroy=>子beforeDestroy=>子destoryed=>父destoryed

原文地址:https://www.cnblogs.com/smile-fanyin/p/14784383.html