Vue 的父组件和子组件生命周期钩子执行顺序是什么
Posted Lady_zhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 的父组件和子组件生命周期钩子执行顺序是什么相关的知识,希望对你有一定的参考价值。
1.加载渲染过程
父beforeCreate->父created->父beforeMount->子beforeCreate->子created->子beforeMount->子mounted->父mounted
2.组件更新过程
父beforeUpdate->子beforeUpdate->子updated->父updated
3.销毁过程
父beforeDestroy->子beforeDestroy->子destroyed->父destroyed
以上是关于Vue 的父组件和子组件生命周期钩子执行顺序是什么的主要内容,如果未能解决你的问题,请参考以下文章