TIL - Episode 7. Utilizing Vue watchers for async data.
Today I was trying to figure out why a passed in prop that I was setting on data for a component wasn't being set.
Check this out:
// my-component.vue
export default {
props: ["rating"],
data() {
return {
rating: this.rating,
}
}...
alvincrespo.hashnode.dev2 min read