possible to remove/add elements without rerender of entire app tree? #1688
Unanswered
iambumblehead
asked this question in
Q&A
Replies: 1 comment 2 replies
-
|
Typically one uses class components and setState() to render only its subtree. You can also use should component update lifecycle event and hook to prevent propagating update to its children |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to precisely remove or add nodes without re-rendering the entire app tree?
For example, if a new "user" is created, is there a supported way to render the vnode-tree for that new user to an existing list of "users", without full re-render?
pseudocode
Beta Was this translation helpful? Give feedback.
All reactions