beforeCreate: function(){
alert("組件實(shí)例化之前執(zhí)行的函數(shù)")
},
created: function(){
alert("組件實(shí)例化完畢,但頁面還未顯示") //一般在此方法內(nèi)獲取初始化數(shù)據(jù)
},
beforeMount: function(){
alert("組件掛載前,頁面仍未展示,但虛擬Dom已經(jīng)配置")
},
mounted: function(){
alert("組件掛載后,此方法執(zhí)行后,頁面顯示")
},
beforeUpdate: function(){
alert("組件更新前,頁面仍未更新,但虛擬Dom已經(jīng)配置")
},
updated: function(){
alert("組件更新后,此方法執(zhí)行后,頁面顯示")
},
beforeDestroy: function(){
alert("組件銷毀前")
},
destroyed: function(){
alert("組件已銷毀")
}
官方文檔圖如下:

lifecycle.png