IT培訓(xùn)網(wǎng)
IT在線學(xué)習(xí)
以下主要從幾個(gè)方面來(lái)講:
1.vue的生命周期是什么
2.vue生命周期的在項(xiàng)目中的執(zhí)行順序
3.vue中內(nèi)置的方法 屬性和vue生命周期的運(yùn)行順序(methods、computed、data、watch)
一、vue的生命周期是什么
vue每個(gè)組件都是獨(dú)立的,每個(gè)組件都有一個(gè)屬于它的生命周期,從一個(gè)組件創(chuàng)建、數(shù)據(jù)初始化、掛載、更新、銷(xiāo)毀,這就是一個(gè)組件所謂的生命周期。在組件中具體的方法有:
- beforeCreate
- created
- beforeMount
- mounted
- (
- beforeUpdate
- updated
- )
- beforeDestroy
- destroyed
對(duì)應(yīng)的中文就如其字面意思,英文不好的童鞋可以有道翻翻
好了,這里要上圖啦~~~
二、vue生命周期的在項(xiàng)目中的執(zhí)行順序
...
data () {
return {
rendered: false,
}
}
...
1.beforeCeate(){
console.log(this.rendered); // undefined
}
2.created() {
console.log(this.$el);//undefined
console.log(this.rendered); // false
}
3.beforeMount() {
console.log(this.$el);//undefined
}
4.mounted() {
console.log(this.$el);
}
5.beforeDestroy(){
console.log(this.$el);
console.log(this.rendered);
}
6.destroyed() {
console.log(this.$el);
console.log(this.rendered);
}
三、vue中內(nèi)置的方法 屬性和vue生命周期的運(yùn)行順序(methods、computed、data、watch、props)
從第一二點(diǎn)可知道data的初始化是在created時(shí)已經(jīng)完成數(shù)據(jù)觀測(cè)(data observer),并且諸如methods、computed屬性 props等已經(jīng)初始化;那問(wèn)題來(lái)了,
data props computed watch methods他們之間的生成順序是什么呢?
props => methods =>data => computed => watch;
更多內(nèi)容
>>本文地址:http://littlerockbway.com/zhuanye/2021/69829.html
聲明:本站稿件版權(quán)均屬中公教育優(yōu)就業(yè)所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
1 您的年齡
2 您的學(xué)歷
3 您更想做哪個(gè)方向的工作?
07月15日Java
咨詢(xún)/試聽(tīng)07月15日Python+人工智能
咨詢(xún)/試聽(tīng)07月15日Web前端
咨詢(xún)/試聽(tīng)07月15日UI設(shè)計(jì)
咨詢(xún)/試聽(tīng)07月15日大數(shù)據(jù)
咨詢(xún)/試聽(tīng)07月15日Java
咨詢(xún)/試聽(tīng)07月15日Python+人工智能
咨詢(xún)/試聽(tīng)07月15日Web前端
咨詢(xún)/試聽(tīng)07月15日UI設(shè)計(jì)
咨詢(xún)/試聽(tīng)07月15日大數(shù)據(jù)
咨詢(xún)/試聽(tīng)