Vue深度监听
2020-06-01 本文已影响0人
bryan_liu
watch: {
'order': {
deep: true,
handler: function(newVal,oldVal){
console.log(newVal)
}
}
}
watch: {
'order': {
deep: true,
handler: function(newVal,oldVal){
console.log(newVal)
}
}
}