[Vuejs]-VueJS updating {} with $set or Vue.set does not work

0👍

Solution:

I changed instance’s properties

data: {},

to:

data: {items: []},

and

then in parse method I jus tused

this.json.data = p;

Leave a comment