TomLongJoy

Results 2 issues of TomLongJoy

want to learn with you , teach me.i think it very nice.

![image](https://github.com/cuixiaorui/mini-vue/assets/18641052/a74dca11-327b-44f3-b2c0-dbc5aec3b8f6) export function trackEffects(dep) { //看看 dep 之前有没有添加过,添加过的话 那么就不添加了 if (dep.has(activeEffect)) return; dep.add(activeEffect) activeEffect.deps.push(dep); // 反向搜集 // start --- test let count = 0; if( activeEffect.deps.length ){ testMethod(activeEffect); } function...