koel/resources/assets/js/app.js

22 lines
497 B
JavaScript
Raw Normal View History

2017-02-14 06:53:02 +00:00
import './static-loader'
2016-11-26 03:25:35 +00:00
import Vue from 'vue'
import { event } from './utils'
import { http } from './services'
2017-02-14 06:53:02 +00:00
import { VirtualScroller } from 'vue-virtual-scroller/dist/vue-virtual-scroller'
2017-01-14 13:09:38 +00:00
Vue.component('virtual-scroller', VirtualScroller)
2016-01-26 06:24:23 +00:00
/**
2016-07-08 04:46:15 +00:00
* For Ancelot, the ancient cross of war
* for the holy town of Gods
* Gloria, gloria perpetua
* in this dawn of victory
2016-01-26 06:24:23 +00:00
*/
2016-06-25 05:24:55 +00:00
new Vue({
2016-06-25 16:05:24 +00:00
el: '#app',
render: h => h(require('./app.vue')),
2016-11-26 03:25:35 +00:00
created () {
event.init()
http.init()
}
})