How to vue watch a specific property in an array of objects
You could use a deep watcher, but a more elegant solution would be to create computed property of the data you want to watch, and watch that instead: new Vue({ el: ‘#app’, data: () => ({ forms: [{ day: ’12’, month: ‘9’, year: ‘2035’, colors: ‘lightblue’, selected: true }, { day: ’28’, month: ’01’, year: … Read more