mirror of
https://github.com/koel/koel
synced 2024-11-25 05:30:20 +00:00
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
import './static-loader'
|
|
import Vue from 'vue'
|
|
import { event } from './utils'
|
|
import { http } from './services'
|
|
import { VirtualScroller } from 'vue-virtual-scroller/dist/vue-virtual-scroller'
|
|
Vue.component('virtual-scroller', VirtualScroller)
|
|
|
|
/**
|
|
* For Ancelot, the ancient cross of war
|
|
* for the holy town of Gods
|
|
* Gloria, gloria perpetua
|
|
* in this dawn of victory
|
|
*/
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(require('./app.vue')),
|
|
created () {
|
|
event.init()
|
|
http.init()
|
|
}
|
|
})
|