mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
29 lines
550 B
JavaScript
29 lines
550 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
|
|
import 'antar-hinted/antar.css'
|
|
import '@/styles/main.scss'
|
|
|
|
import { i18n, i18nInitialized } from '@/plugins/i18n'
|
|
import vuetify from '@/plugins/vuetify'
|
|
import store from '@/store'
|
|
import router from '@/router'
|
|
|
|
import './registerServiceWorker'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
Promise.all([
|
|
store.dispatch('prefs/loadState'),
|
|
store.dispatch('auth/initializeAuth'),
|
|
i18nInitialized
|
|
]).then(() => {
|
|
new Vue({
|
|
vuetify,
|
|
i18n,
|
|
store,
|
|
router,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|
|
})
|