You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the auto accessor only notifies the listener inside it instead of notifying the whole model. If developers mutate the model, it would not cause a rerender.
We have two way to fix it:
notify the corresponding accessor when developers mutate the model
remove the self listeners, the accessor directly notify the model's listeners
I prefer the first approach.
The text was updated successfully, but these errors were encountered:
Currently the auto accessor only notifies the listener inside it instead of notifying the whole model. If developers mutate the model, it would not cause a rerender.
We have two way to fix it:
I prefer the first approach.
The text was updated successfully, but these errors were encountered: