bus.js
import Vue from 'vue' | |
const bus = new Vue() | |
//Install the Event Bus in the Vue.prototype when imported | |
export default function install(Vue) { | |
Object.defineProperty(Vue.prototype, '$bus', { | |
get() { | |
return bus | |
} | |
}) | |
} |