Add custom header & minor refactoring

This commit is contained in:
Gennady Grishkovtsov
2018-10-05 22:51:41 +03:00
parent 5d8139d674
commit 52b7dfe958
8 changed files with 148 additions and 104 deletions

View File

@@ -1,5 +1,5 @@
import AudioPlayer from './components/player.vue'
import AudioRecorder from './components/recorder.vue'
import AudioPlayer from '@/components/player.vue'
import AudioRecorder from '@/components/recorder.vue'
const components = {
AudioPlayer,
@@ -12,6 +12,8 @@ const components = {
this.installed = true
Vue.prototype.$eventBus = Vue.prototype.$eventBus || new Vue
Vue.component('audio-player', AudioPlayer)
Vue.component('audio-recorder', AudioRecorder)
}