1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| 钩子函数 生命周期 beforeCreate:function () { alert("组件实例化之前执行的函数"); }, created:function(){ alert("组件实例化完毕,但页面还未显示"); }, beforeMount:function(){ alert("组件挂载前,页面仍未展示,但虚拟demo已经配置"); }, mounted:function(){ alert("组件挂载后,此页面展示"); }, beforeUpdate:function () { alert("组件更新前,页面仍未更新,但虚拟Dom已经配置"); }, updated:function () { alert("组件更新,页面更新"); }, beforeDestory:function(){ alert("组件销毁前"); }, destoryed:function(){ alert("组件销毁后"); }
|