UNPKG

quasar-framework

Version:

Simultaneously build desktop/mobile SPA websites & phone/tablet apps with VueJS

13 lines (10 loc) 272 B
let bus export function install (_Vue) { bus = new _Vue() } export default { $on (...args) { bus && bus.$on(...args) }, $once (...args) { bus && bus.$once(...args) }, $emit (...args) { bus && bus.$emit(...args) }, $off (...args) { bus && bus.$off(...args) } }