fix: computation should be lazy.

This commit is contained in:
haiqin 2024-01-24 14:51:08 +08:00
parent ecbe842154
commit 4de52d8b6e
1 changed files with 0 additions and 4 deletions

View File

@ -61,10 +61,6 @@ export class RProxyNode<T = any> extends RNode<T> {
}
this.parent.children.set(this.key, this);
}
if (this.isComputed) {
this.update();
}
}
compare(prevValue: any, value: any) {