yunohost-admin/app/src/main.js

27 lines
554 B
JavaScript
Raw Normal View History

2020-07-06 19:08:34 +02:00
import Vue from 'vue'
import App from './App.vue'
2020-08-29 19:05:56 +02:00
import BootstrapVue from 'bootstrap-vue'
import i18n from './i18n'
2020-08-29 19:05:56 +02:00
import router from './router'
import store from './store'
import * as globalsComponents from './components/globals'
2020-07-06 19:08:34 +02:00
Vue.config.productionTip = false
2020-08-29 19:05:56 +02:00
// Styles are imported in `src/App.vue` <style>
Vue.use(BootstrapVue)
// Register global components
2020-07-15 16:39:24 +02:00
for (const component of Object.values(globalsComponents)) {
Vue.component(component.name, component)
}
2020-07-06 19:08:34 +02:00
new Vue({
2020-07-15 16:39:24 +02:00
i18n,
router,
store,
render: h => h(App)
2020-07-06 19:08:34 +02:00
}).$mount('#app')