Vueライフサイクルのフック関数の解釈

4134 ワード

Vueライフサイクルのフック関数の説明:
methods:外に書いて、methods:と同じレベル
beforeCreate:function(){
     
	alert("            ");
},
created:function(){
     
	alert("       ,       ");
},
beforeMount:function(){
     
	alert("     ,      ,   Dom    ");
},
mounted:function(){
     
	alert("     ,      ,    ");
},
beforUpdate:function(){
     
	alert("     ,      ,   DOM     ")
},
updated:function(){
     
	alert("    ,      ,    ")
},
beforeDestroy:function(){
     
	alert("     ");
},
destroyed:function(){
     
	alert("    ");
}