How can we $watch multiple data properties by calling a single callback? I tried something like this.
data(){return{
firstValue:[],
secondValue:[],
}
},
watch:{
// I want to watch both `firstValue` and `secondValue` by a single function :function(){
do somethings}
}