how watch object in vue code example
Example 1: 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 2: using the watch method to monitor route updates in vue
export default {
name: 'MovieData',
props: {
movie: {
type: String,
required: true,
}
},
data() {
return {
movieData: {},
}
},
watch: {
movie(movie) {
fetch(`/${movie}`).then((data) => {
this.movieData = data;
});
}
}
}