加载渲染过程
父beforeCreate --> 父created --> 父beforeMount --> 子beforeCreate --> 子created --> 子beforeMount --> 子Mounted --> 父Mounted
子组件更新过程
父beforeUpdate --> 子beforeUpdate --> 子updated --> 父updated
父组件更新过程
父beforeUpdate --> 父updated
销毁过程
父beforeDestory --> 子beforeDestory --> 子destoryed --> 父destoryed
原文:https://www.cnblogs.com/ITwj-115/p/15171960.html