fe-interview
fe-interview copied to clipboard
vue中的diff算法是在哪些生命周期执行的?
diff算法
的执行在 render函数
返回 VNode
的过程中。这样来看diff算法的执行在这两个生命周期段之间:
-
created
生命周期到beforeMount
生命周期之间; -
beforeUpdate
生命周期到updated
生命周期之间。