Files
vue-audio-recorder/src/index.js
2018-10-05 22:51:41 +03:00

25 lines
488 B
JavaScript

import AudioPlayer from '@/components/player.vue'
import AudioRecorder from '@/components/recorder.vue'
const components = {
AudioPlayer,
AudioRecorder,
install (Vue) {
if (this.installed) {
return
}
this.installed = true
Vue.prototype.$eventBus = Vue.prototype.$eventBus || new Vue
Vue.component('audio-player', AudioPlayer)
Vue.component('audio-recorder', AudioRecorder)
}
}
export default components
export { AudioPlayer, AudioRecorder }