mounted: function() {
this.$watch('things', function(){console.log('a thing changed')}, true);
}
things
is an array of objects [{foo:1}, {foo:2}]
$watch
detects when an object is added or removed, but not when values on an object are changed. How can I do that?