$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
})
}
$nuxt.$emit('my-custom-event')
created() {
this.$nuxt.$on('my-custom-event', () => {
//Do Something
})
}