[Vuejs]-Vue js modal: mixin or plugin?

0👍

The easiest way will be to create global event bus

//Example
Vue.EVENTS = new Vue()

As far as it is global, all events that are emitted through EVENTS could be listened anywhere in your component tree.

For example, check how this plugin works: https://github.com/euvl/vue-js-modal/

Leave a comment