mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-05-03 22:04:53 +03:00
First commit
This commit is contained in:
commit
4ebd2617aa
37 changed files with 14661 additions and 0 deletions
src
19
src/main.js
Normal file
19
src/main.js
Normal 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');
|
Loading…
Add table
Add a link
Reference in a new issue