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
Hey, not sure if this is the right place to ask this, please let me know if there is a better place for this.
In our application we also store state in classes, because of better layering, being easier to test, etc. etc.
However the particular implementation of this library won't work in our usecase as our models are nested.
A farm "VueStore" contains several animals, etc
If you just put a regular JS class in vue state, it makes that instance reactive, binds a proxy to all its getters and setters which can cause components to update.
Apart from the computed values and watch lifecycle hooks that your library provide, does not using your library cause any issues down the line of just making class instances reactive?
Sorry if this is the wrong place to ask this
The text was updated successfully, but these errors were encountered:
Hey, not sure if this is the right place to ask this, please let me know if there is a better place for this.
In our application we also store state in classes, because of better layering, being easier to test, etc. etc.
However the particular implementation of this library won't work in our usecase as our models are nested.
A farm "VueStore" contains several animals, etc
If you just put a regular JS class in vue state, it makes that instance reactive, binds a proxy to all its getters and setters which can cause components to update.
Apart from the computed values and watch lifecycle hooks that your library provide, does not using your library cause any issues down the line of just making class instances reactive?
Sorry if this is the wrong place to ask this
The text was updated successfully, but these errors were encountered: