Vue Dynamic Create Watch

vm.$watch('counter', function(newValue, oldValue) {
	alert('Counter changed from ' + oldValue + ' to ' + newValue + '!');
});
TheDutchScorpion