1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-05-03 22:04:53 +03:00

First commit

This commit is contained in:
WDaan 2019-04-15 16:50:38 +02:00
commit 4ebd2617aa
37 changed files with 14661 additions and 0 deletions

19
src/main.js Normal file
View file

@ -0,0 +1,19 @@
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 './registerServiceWorker'
Vue.use(VueApexCharts);
Vue.component('apexchart', VueApexCharts);
Vue.config.productionTip = false;
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app');