Frontmatter
| id | 2366 |
| title | component.Base: set() => only trigger a vdom update if needed |
| state | Closed |
| labels | enhancement |
| assignees | tobiu |
| createdAt | Jun 15, 2021, 2:16 AM |
| updatedAt | Jun 15, 2021, 2:16 AM |
| githubUrl | https://github.com/neomjs/neo/issues/2366 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jun 15, 2021, 2:16 AM |
while
set()is intended for bulk config updates resulting in just 1 vdom update engine call at the end, there are cases where you only update non vdom related configs.one example is
model.Componentwhich calls set on config changes.the new logic need to track if the vdom of the cmp actually needs an update or not.