其他分享
首页 > 其他分享> > Vue父子组件生命周期执行顺序及钩子函数

Vue父子组件生命周期执行顺序及钩子函数

作者:互联网

加载渲染过程
父 beforeCreate-->父 created-->父 beforeMount-->子 beforeCreate -->子 created-->子 beforeMount-->子 Mounted-->父 mounted

子组件更新过程

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

父组件更新过程

父 beforeUpdate-->父 updated

销毁过程

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

 

标签:beforeUpdate,生命周期,beforeCreate,更新过程,--,钩子,updated,Vue,组件
来源: https://www.cnblogs.com/chenwan1218/p/15155340.html