• Options API 生命周期
      • beforeDestroy 改为 beforeUnmounted
      • destroyed 改为 unmouted
      • 其他沿用 Vue2 的生命周期
    • Composition API 生命周期
      • setup 整合了 beforeCreatecreate
        1. onBeforeMount,
        2. onMounted,
        3. onBeforeUpdate,
        4. onUpdated,
        5. onBeforeUnmount,
        6. onUnmounted