-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
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
Glitch when update nested reactive property #1366
Comments
Please provide a runnable reproduction thanks! |
Hey @Akryum. Sure, This is the link, just clone it: https://github.com/CesarGomezTissini/devtool-beta-repro Regards! |
Same problem for me running on Firefox 88.0b4 (64-bit) (Manjaro Linux) |
@CesarGomezTissini If a reactive state isn't used in the application, it's not made reactive by Vue, and thus not triggering an update in your application nor in the devtools. Vue reactivity system is lazy. In your reproduction, display <button>{{ load.active }} {{ load.number }}</button> |
Version
6.0.0-beta.7
Browser and OS info
Microsoft Edge 88.0.705.74 / Windows 10
Steps to reproduce
What is expected?
state.load.number
changing its value in Devtool automatically.What is actually happening?
Not changes. I just should to press in parent component (App) and then in the child itself at Component tree view to see value update. This happened if property is not called in template, look like.
Additionally, "number" load sibling property isn't being showing in. I don't know if it's the same due to explained above (property is not called in Template)
I have generated the project with Vite.
The text was updated successfully, but these errors were encountered: