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