Event bus for vue 3
npm install vue-signalerA tiny eventbus library for vue 3
- It provides a plugin and composables for using event bus
- just simply plug it with your vue and it will take care of everything
- it's only 300 bytes (gzip)
sh
npm i vue-signaler
`usage
##### To use the library in Vue 3
In the main.js file, import the eventBus and use it as plugin
`vue
`In the components, we can access the eventBus using the composable
useEventBus
`vue
``