UNPKG

vue-howler-bus

Version:

An audio engine Vue plugin based on Howler and an EventEmitter model

9 lines (7 loc) 205 B
import {AudioEngine} from './engine'; export const AudioPlugin = (tracks, bus) => ({ install (Vue) { const $bus = bus || new Vue(); Vue.prototype.$audio = new AudioEngine($bus, tracks) } });