Skip to content
Advertisement

how to see changes in new data generated in a vue component?

Well I hope to explain, I’m generating this data from a component, when I click the checkbox changes in the generated data are not reflected, but when clicking the button with a data already in the instance changes are made, I appreciate if you explain Why or do they have a solution?

this my code

js

JavaScript

html

JavaScript

this live code https://jsfiddle.net/cqx12a00/1/

Thanks for you help

Advertisement

Answer

You don’t declare the show variables that your checkboxes are bound to, so they are not reactive – Vue is not aware when one is updated.

It should be initialized like so:

JavaScript

You might think that newData would fix it, since it assigns a show member to each item, but Vue cannot detect added properties so they’re still not reactive. If you initialized the data as I show above, then the assignment would be reactive.

If you want to add a new reactive property to an object, you should use Vue.set.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement