I have a vue object:
var vm = new Vue({ el: '#app', data: { items: [], index: 0 }, });
Inside the array of objects, I will click on elements such as:
item1 = { a: 1, b: 'type', c: '3.556' } ... itemN = { a: n, b: 'type', c: '5.226' }
then I will update one of the properties of the "c" element, and I would like to set up an observer that warns me as soon as one of these properties changes.
EDIT: I also want to know that the witch element has changed
source share