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:
parent
3f35340c0d
commit
9374f5bab8
18 changed files with 3855 additions and 3793 deletions
src
23
src/main.js
23
src/main.js
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue