?created(){} 創(chuàng)建完成生命函數(shù)
?created(){ console.log('..........created..........');? },
?這個生命周期函數(shù),通常用于初始化Vue管理的數(shù)據(jù)比如:發(fā)生ajax請求會放在這里罗标。
mounted(){} 掛載完成(模板已經(jīng)成功渲染,并且已經(jīng)將模板內(nèi)容掛載到了頁面)
mounted() { console.log('-----------------mounted------------------');}完沪,
?// 這個生命周期函數(shù),通常用于對DOM的重新改動
? ?beforeDestroy(){}?銷毀之前
?beforeDestroy() {console.log('.........beforeDestroy..........');
? // 對數(shù)據(jù)做任何的修改稀余,都不會重新渲染到頁面? ? ? ? ? ? ?
? this.name ='王五'},