“Nuxt JS EMIT Event” Kod odpowiedzi

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

Odpowiedzi podobne do “Nuxt JS EMIT Event”

Pytania podobne do “Nuxt JS EMIT Event”

Więcej pokrewnych odpowiedzi na “Nuxt JS EMIT Event” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu