1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-05-06 15:24:41 +03:00

fixed deployment (finally)

This commit is contained in:
daan 2019-08-10 17:56:54 +02:00
parent 3f35340c0d
commit 9374f5bab8
18 changed files with 3855 additions and 3793 deletions

View file

@ -1,19 +1,20 @@
import Vue from 'vue';
import './plugins/vuetify';
import App from './App.vue';
import router from './router';
import VueApexCharts from 'vue-apexcharts';
import store from './services/store';
import Vue from 'vue'
import './plugins/vuetify'
import VueApexCharts from 'vue-apexcharts'
import App from './App.vue'
import router from './router'
import store from './services/store'
import './registerServiceWorker'
Vue.use(VueApexCharts);
Vue.component('apexchart', VueApexCharts);
Vue.use(VueApexCharts)
Vue.config.productionTip = false;
Vue.component('apexchart', VueApexCharts)
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app');
render: (h) => h(App),
}).$mount('#app')