koel/resources/assets/js/app.js
2017-12-10 22:39:53 +01:00

20 lines
459 B
JavaScript

import './static-loader'
import Vue from 'vue'
import App from './app.vue'
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(App),
created () {
http.init()
}
})