mirror of
https://github.com/koel/koel
synced 2025-01-21 08:54:18 +00:00
12 lines
185 B
JavaScript
12 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()
|
||
|
}
|
||
|
})
|