Published
- 1 min read
vue deep watch
The solution for this is noted below
vue deep watch
Solution
watch: {
colors: {
handler(newValue){
console.log('colors changed', newValue)
}, deep: true
}
}
Try other methods by searching on the site. That is if this doesn’t work