当data中变量的值变化时,watch监听到并且执行
123456789101112
export default { data(){ return { value:'' } }, watch:{ value(newVal, oldVal){ /* 要执行操作 */ } }}