Replies: 1 comment
-
I hope metaprogramming will solve this pain. It does not make sense to add reactivity to data classes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a large model with several properties, properties that are other objects and lists.
It is loaded via service after opening the application.
Some app features change part of this model, this part has to be reactive with observers.
The best option is to create a store that represents this complex model with the model's properties as observables?
And these properties don't need to be of type store?
how do i change the object data without having to put all its properties as observable?
Sample:
abstract class XControllerBase with Store {
@observable
ObservableList listX= ObservableList();
@observable
ObjectY yyyy;
}
Beta Was this translation helpful? Give feedback.
All reactions