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