When working with Vue.js, we can easily access the value after modification within watchers using the following syntax:
watch: function(valueAfterModification){
// ......
}
But what about getting the value before it's modified?
PS: The official documentation doesn't provide any information on this here