首页 > 其他 > 详细

Vue父子组件生命周期

时间:2018-06-07 13:19:22      阅读:177      评论:0      收藏:0      [点我收藏+]

转载自:https://blog.csdn.net/a8725585/article/details/79092505

vue父子组件钩子函数触发顺序

beforeMount后mounted前构造子组件 依次遍历

beforeCreate-父组件
create-父组件
beforeMount-父组件
beforeCreate-子组件
create-子组件
beforeMount-子组件
beforeCreate-次子组件
create-次子组件
beforeMount-次子组件
mounted-次子组件
mounted-子组件

mounted-父组件

钩子函数发生的事

beforeCreate-组件刚实例化完成 el 和 data 都为undefined 
created-组件实例化完成 data 数据有值,Dom还未生成 el没有值

beforeMount-虚拟Dom已生成 el 和 data 有值 此时显示<span>{{message}}</span>  俗称占坑

mounted-挂载完成 此时显示 <span>123 </span>

Vue父子组件生命周期

原文:https://www.cnblogs.com/wuguanglin/p/theParentAndChildComponentLifeCycleofView.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!