NUXT JS Emit Event
$nuxt.$emit('my-custom-event') // to emit an event
created() { listen to an event anywhere in the nuxt app
this.$nuxt.$on('my-custom-event', () => {
//Do Something
})
}
9jadev