Vue生命周期鉤子
- beforeCreate: 組件實例剛被創(chuàng)建, 組件屬性計算之前, 如data屬性等
- created: 組件實例創(chuàng)建完成, 屬性已綁定, 但DOM還未生成, $el 屬性還不存在
- beforeMount: 模版編譯/掛載之前
- mounted: 模版編譯/掛載之后(不保證組件已在document中)
- beforeUpdate: 組件更新之前
- updated: 組件更新之后
- activated: for keep-alive, 組件激活時調用
- deactivated: for keep-alive, 組件移除時調用
- beforeDestory: 組件銷毀前調用
- destory: 組件銷毀后調用