Vuejs: Event on route change
Build a watcher on $route in element:
watch:{ $route (to, from){ this.show = false; } }
It notices route modifications and when modified, sets shows false.
Build a watcher on $route in element:
watch:{ $route (to, from){ this.show = false; } }
It notices route modifications and when modified, sets shows false.