mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-05-03 13:55:05 +03:00
updated vuetify & fucked everything up
This commit is contained in:
parent
57e22c88db
commit
ebc026460b
18 changed files with 7293 additions and 4130 deletions
src
26
src/main.js
26
src/main.js
|
@ -1,19 +1,33 @@
|
|||
import Vue from 'vue'
|
||||
import './plugins/vuetify'
|
||||
import Toast from 'vue-toastification'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import store from './services/store'
|
||||
import './registerServiceWorker'
|
||||
import App from '@/App.vue'
|
||||
import '@/registerServiceWorker'
|
||||
import router from '@/router'
|
||||
import store from '@/store'
|
||||
import vuetify from '@/plugins/vuetify'
|
||||
import '@babel/polyfill'
|
||||
|
||||
import Toast from 'vue-toastification'
|
||||
import 'vue-toastification/dist/index.css'
|
||||
|
||||
Vue.use(Toast)
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
// register modals
|
||||
const files = require.context('@/components/Modals', true, /\.vue$/i)
|
||||
files.keys().map(key =>
|
||||
Vue.component(
|
||||
key
|
||||
.split('/')
|
||||
.pop()
|
||||
.split('.')[0],
|
||||
files(key).default
|
||||
)
|
||||
)
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
vuetify,
|
||||
render: h => h(App)
|
||||
}).$mount('#app')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue