在使用 Vue 的 watch 的時候,一般都是用這樣的
watch:{ text:{ handler(newValue){ console.log(newValue) } } }
這樣就可以使用 watch 觀察 text 這個變數。
但是如果想要觀察這個物件的 title 的話就不知道怎麼做message:{ title:'', container:'', footer:'', }
message:{
title:'',
container:'',
footer:'',
}
只要在觀察的變數上加入 ''
"單引號"就可以了
watch:{
'message.title':{
handler(newValue){
console.log(newValue)
}
}
}