Vue3 life-cycle
# 1.Composition API -> beforeCreate & created Not needed
在 Vue3 中,beforeCreate 和 created 可以照常在 Options API 使用。
但在 setup 也就是 Composition API 中 已经不存在了。
但我们要在 beforeCreate 或 created 里做一系列操作的话,除了在 setup 外写,还可直接在 setup 中执行,甚至执行更早。
因为在源码里,setup...
more...







