Jackie
Jackie

Reputation: 23477

How do I tap into Vue-Router Navigation guard?

I have this code, but when I try to navigate to a different route the event is never called. How do I fire an event when there is a route change.

Upvotes: 0

Views: 37

Answers (1)

Jackie
Jackie

Reputation: 23477

This worked...

watch: {
   '$route' (to, from) {
     console.log('route switched')
   }
}

Upvotes: 1

Related Questions