Vue生命周期

一、父子组件

image.png

所以:
父beforeCreate > 父created > 父beforeMount > 子beforeCreate > 子created > 子beforeMount > 子mounted > 父mounted

二、属性状态 [官方源码链接]

image.png

所以:
props - > methods - > data - > computed - > watch

三、生命周期 + 属性状态

beforeCreate > props - > methods - > data - > computed - > watch > created > beforeMount > mounted

你可能感兴趣的:(Vue生命周期)