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
Watch on objects does not work correctly.
watchThingsDeeply(newVal, oldVal) newVal and oldVal objects are the same.
watchThingsDeeply(newVal, oldVal)
If you watch only property in works correctly
The text was updated successfully, but these errors were encountered:
Hey @Uffman! Can you post a code example?
I've seen people run into an issue with that before, but it happened to just be syntax issues.
Sorry, something went wrong.
You can run your example from components/watch It has the same issues.
If you change anObj.foo, property, then both newVal object and oldVal object in method watchThingsDeeply has the same property value for foo property.
anObj.foo
newVal
oldVal
watchThingsDeeply
foo
Method watchFooThings works fine
watchFooThings
No branches or pull requests
Watch on objects does not work correctly.
watchThingsDeeply(newVal, oldVal)
newVal and oldVal objects are the same.
If you watch only property in works correctly
The text was updated successfully, but these errors were encountered: