DEV Community

Discussion on: Comparing React Hooks with Vue Composition API

Collapse
 
nikosdev profile image
Nikos Kanakis

Nice article Guillermo!

Btw do you know how can you use watchers in Composition API to watch if a route is changing?
According to vue router documentation you had to use this:

router.vuejs.org/guide/advanced/da...

watch: { 
    // call again the method if the route changes
    '$route': 'fetchData'
}