2017-07-23 18:42:08 +00:00
|
|
|
import Vue from 'vue';
|
|
|
|
import App from './components/App';
|
|
|
|
import store from './store';
|
2017-07-28 07:40:24 +00:00
|
|
|
import './services/syncSvc';
|
2017-07-23 18:42:08 +00:00
|
|
|
import './extensions/';
|
|
|
|
import './services/optional';
|
|
|
|
import './icons/';
|
|
|
|
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
|
|
|
/* eslint-disable no-new */
|
|
|
|
new Vue({
|
|
|
|
el: '#app',
|
|
|
|
store,
|
|
|
|
render: h => h(App),
|
|
|
|
});
|