I have a component with the following hash
{ computed: { isUserID: { get: function(){ return this.userId? } } }
computed: { name: { get: function(){ return this.name; } } }, watch: { name: function(){ console.log('changed'); } }
This way we can watch over the computed property if it is changed we get notified on the console.