Nuxt3 issues ?
Author: bloorCreated May 2, 2022Updated Oct 20, 2023
I`m struggling to make it work with a nuxt3 project (static , ssr:false).
Basically it DOES emit the events, but it's harder to receive them.
I added this in: current component , sub-component, sub-sub-component
emitter.on('*', () => { alert(1)});
And only the one in the current component is triggered. Don't seem to be able to go cross-components. Might be because of how nuxt encapsulates the components _ .. but currently I have no easy solution for "global" events..
Source: developit/mitt