2019-05-10 23:12:00 +02:00
|
|
|
import Vue from 'vue'
|
|
|
|
import VueI18n from 'vue-i18n'
|
|
|
|
|
|
|
|
import BootstrapVue from 'bootstrap-vue'
|
|
|
|
|
|
|
|
import 'bootstrap/dist/css/bootstrap.css'
|
|
|
|
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
|
|
|
import 'bootswatch/dist/flatly/bootstrap.css'
|
|
|
|
|
|
|
|
import app from './app.vue'
|
|
|
|
import messages from './langs/langs.js'
|
|
|
|
|
|
|
|
Vue.use(BootstrapVue)
|
|
|
|
Vue.use(VueI18n)
|
|
|
|
|
|
|
|
const i18n = new VueI18n({
|
|
|
|
locale,
|
|
|
|
fallbackLocale: 'en',
|
|
|
|
messages,
|
|
|
|
})
|
|
|
|
|
|
|
|
new Vue({
|
2019-07-14 18:00:47 +02:00
|
|
|
el: '#app',
|
2019-05-10 23:12:00 +02:00
|
|
|
components: { app },
|
2019-05-10 23:25:27 +02:00
|
|
|
data: { version },
|
2019-05-10 23:12:00 +02:00
|
|
|
i18n,
|
|
|
|
render: createElement => createElement('app'),
|
|
|
|
})
|