I\'m discovering VueJS and I don\'t understand exactly the differences between updated
and watchers.
It is a lifecycle hook. Accordin
The lifecycle hooks around update respond to changes in the DOM. Watchers respond to changes in the data. DOM changes are generally in response to data changes, but they might not be data owned by the component in question. One example where updated
could be used is noticing that slot content has updated.