mirror of
https://github.com/kevin-DL/vue-audio-recorder.git
synced 2026-01-11 19:04:28 +00:00
15 lines
212 B
JavaScript
15 lines
212 B
JavaScript
import Vue from 'vue'
|
|
import axios from 'axios'
|
|
import app from './app'
|
|
|
|
import AudioRecorder from '@/index'
|
|
|
|
Vue.prototype.$http = axios
|
|
|
|
Vue.use(AudioRecorder)
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(app)
|
|
})
|