[Vuejs]-Update a data property is not working on button click in vuejs

1👍

Because it is json data and the values are not bound, you may have to use vm.$set to update the data.

e.g:

vm.$set(this,'dispData',JSON.parse(table_Data.getPageData2019));

-1👍

After receiving @terry feedback, I realize this is not relevant, I’ve spun up a simple example working with data. Perhaps try to plug your data into it and see if it works?

https://codesandbox.io/s/ry194p818o

Leave a comment