0👍
Vue does not detect changes in a nested object. You’ll have to create a watcher like so:
watch: {
object: {
handler(newVal, oldVal) {
// do something with the object
},
deep: true,
},
Source:stackexchange.com