Search code examples
vue.jseventslaravel-livewirelisten

Emit Livewire event and listen in Vue component


Is there a way to execute an event in Livewire component and listen about it in the Vue component?

Or emitting browser event from Livewire with $this->dispatchBrowserEvent('event-name'); and listen about it in the Vue component?

Is this kind of communication achievable at all?

Please any suggestions. Thanks!


Solution

  • You can checkout livewire/vue github page.

    From there you can follow Dispatching Browser Events docs.