相对于vue2来说vue3生命周期有以下更改
1.beforedestory、destory替换为beforeUnmount、unmount
2.在setup中注入生命周期钩子规则是在生命周期hook前面加一个on例如:onBeforeMount
3.假如使用optionsApi的同时又使用了compisitionnApi,那么执行顺序为先走optionsApi再执行compisitionnApi
beforeMount=>onBeforeMount=>mounted=>...
note:setup中没有beforeCreate、create钩子。
网友评论