Vue 2.0のライフサイクル


beforeCreate:function(){
	alert("            ") 
},
created:function(){
	alert("       ,       ");
},
beforeMount:function(){
	alert ("     ,      ,   Dom    ");
},
mounted:function(){
	alert("     ,      ,    ");
},
beforeUpdate:function(){
	alert("     ,      ,   Dom    ");
},
updated:functioni){
	alert ("    ,      ,    ");
},
beforeDestory:function(){
	alert ("     ");
}
destoryed: function (){
	alert ("    ");
}