mirror of
https://github.com/kevin-DL/vue-audio-recorder.git
synced 2026-01-11 19:04:28 +00:00
17 lines
299 B
JavaScript
17 lines
299 B
JavaScript
import Vue from 'vue'
|
|
import axios from 'axios'
|
|
import AudioRecorder from '../src/audio-recorder'
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.prototype.$http = axios
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
components: {AudioRecorder},
|
|
methods: {
|
|
callback (msg) {
|
|
console.debug('Event: ', msg)
|
|
}
|
|
}
|
|
})
|