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:
parent
402bb61a98
commit
d1d01aafe4
25 changed files with 15035 additions and 14945 deletions
src
10
src/main.js
10
src/main.js
|
@ -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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue