mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 14:48:13 -05:00
11 lines
176 B
JavaScript
11 lines
176 B
JavaScript
import Vue from 'vue'
|
|
import App from './APP.vue'
|
|
import 'melody.css'
|
|
import axios from 'axios'
|
|
|
|
Vue.prototype.$http = axios
|
|
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount('#app')
|