I created a vue object for data reactivity :
let vm = new Vue({
data () {
return {
myData: {}
}
},
watch: {
myData (value) {
console.log('changed')
}
}
})
When I push / edit / delete into vm.myData, all is ok, the watcher send me changed.
Now, i want to get the changed event only by "touching" vm.myData (without data edition). Can I call an internal method of the observer for this ?