2016-02-09 04:57:08 +00:00
|
|
|
import Vue from 'vue';
|
2016-06-25 10:15:57 +00:00
|
|
|
|
2016-06-25 05:24:55 +00:00
|
|
|
import { event } from './utils';
|
2016-07-09 04:06:14 +00:00
|
|
|
import { http } from './services';
|
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',
|
2016-07-09 04:06:14 +00:00
|
|
|
render: h => h(require('./app.vue')),
|
|
|
|
created() {
|
|
|
|
event.init();
|
|
|
|
http.init();
|
|
|
|
},
|
2016-06-25 05:24:55 +00:00
|
|
|
});
|