“Nuxt emit” Respostas de código

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

Nuxt emit

$nuxt.$emit('my-custom-event')

created() {
   this.$nuxt.$on('my-custom-event', () => {
     //Do Something
   })
}
Stupid Seal

Respostas semelhantes a “Nuxt emit”

Perguntas semelhantes a “Nuxt emit”

Procure respostas de código populares por idioma

Procurar outros idiomas de código