//watch监听复杂数据类型
watch:{
数据名:{
handler(newval, oldval){
// 业务处理
},
deep:true//开启深度监听
}
}
//watch监听基础数据类型
watch: {
数据名(newval, oldval) {
//业务处理
}
}