Add existing code

This commit is contained in:
Gennady Grishkovtsov
2018-07-23 12:00:58 +03:00
parent ff7cb590c5
commit 95a9700d50
22 changed files with 10295 additions and 2 deletions

13
src/index.js Normal file
View File

@@ -0,0 +1,13 @@
import AudioRecorder from './audio-recorder.vue'
export default {
install: function (Vue) {
if (this.installed) {
return
}
this.installed = true
Vue.component('audio-recorder', AudioRecorder)
}
}