美文网首页
vue3.0生命周期

vue3.0生命周期

作者: 姜酱i | 来源:发表于2022-04-25 09:52 被阅读0次

    相对于vue2来说vue3生命周期有以下更改

    1.beforedestory、destory替换为beforeUnmount、unmount
    2.在setup中注入生命周期钩子规则是在生命周期hook前面加一个on例如:onBeforeMount
    3.假如使用optionsApi的同时又使用了compisitionnApi,那么执行顺序为先走optionsApi再执行compisitionnApi
    beforeMount=>onBeforeMount=>mounted=>...
    

    note:setup中没有beforeCreate、create钩子。

    相关文章

      网友评论

          本文标题:vue3.0生命周期

          本文链接:https://www.haomeiwen.com/subject/klhfyrtx.html