mirror of
https://github.com/Luzifer/ots.git
synced 2025-02-06 02:15:18 -05:00
7f72d1a423
Signed-off-by: Knut Ahlers <knut@ahlers.me>
29 lines
545 B
JavaScript
29 lines
545 B
JavaScript
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({
|
|
el: '#app',
|
|
components: { app },
|
|
data: { version },
|
|
i18n,
|
|
render: createElement => createElement('app'),
|
|
})
|