mirror of
https://github.com/koel/koel
synced 2025-01-04 08:48:48 +00:00
11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
import './static-loader'
|
|
import Vue from 'vue'
|
|
import { http } from '../services'
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(require('./app.vue')),
|
|
created () {
|
|
http.init()
|
|
}
|
|
})
|