1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-05-02 21:34:42 +03:00

webui start + basic torrent showing

This commit is contained in:
Daan Wijns 2020-05-20 09:59:12 +02:00
parent 402bb61a98
commit d1d01aafe4
25 changed files with 15035 additions and 14945 deletions

View file

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