I am trying to figure out how the this.$set (aka Vue.set) api works when using it to update an multidimensional array.
Given:
new Vue({
el: '#app',
data: {
rows:[{"id": "4", "edit": "true" }, { "id": "5", "edit": "false" }]
},
....
How will I use $this.set to do something like this:
this.rows[0].edit = false
I know this doesn't work:
this.$set(this.rows2, 0, false)
What is the correct way to use $this.set for a KV pair array ?