new Vue({ el: '#app', data: { a: { b: { c: { d: 1 } } } }, watch: { 'a.b' : { deep: true, handler: function(){ console.log(arguments) } } } })