We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have computed property A which is dependent on X (@computedFrom('X')) and computed property B which is dependent on A (@computedFrom('A')).
@computedFrom('X')
@computedFrom('A')
My question is: if x changes, but the result of A does not should B be re-calculated? It seems that it is. Is this by design? I was not expecting it.
The text was updated successfully, but these errors were encountered:
@GabrielMancik Can you help create a playground for this based on this template https://codesandbox.io/s/wnr6zxv6vl
Sorry, something went wrong.
No branches or pull requests
I have computed property A which is dependent on X (
@computedFrom('X')
) and computed property B which is dependent on A (@computedFrom('A')
).My question is: if x changes, but the result of A does not should B be re-calculated?
It seems that it is. Is this by design? I was not expecting it.
The text was updated successfully, but these errors were encountered: