fe-interview icon indicating copy to clipboard operation
fe-interview copied to clipboard

vue中的diff算法是在哪些生命周期执行的?

Open habc0807 opened this issue 4 years ago • 1 comments

habc0807 avatar Jul 24 '20 10:07 habc0807

diff算法 的执行在 render函数 返回 VNode 的过程中。这样来看diff算法的执行在这两个生命周期段之间:

  • created 生命周期到 beforeMount 生命周期之间;
  • beforeUpdate 生命周期到 updated 生命周期之间。

habc0807 avatar Jul 27 '20 09:07 habc0807