vue watch deep determine which index haas changed code example
Example 1: vue deep watch
watch: {
colors: {
handler(newValue){
console.log('colors changed', newValue)
}, deep: true
}
}
Example 2: vue watch deep
export default {
name: 'ColorChange',
props: {
colors: {
type: Array,
required: true,
},
},
watch: {
colors: {
deep: true,
handler(value) {
console.log('The list of colors has changed!', value);
}
}
}
}
Example 3: using the watch method to monitor route updates in vue
watch: {
movie: {
handler(movie) {
fetch(`/${movie}`).then((data) => {
this.movieData = data;
});
}
}
}