2020-05-04 17:33:50 +02:00
|
|
|
'use strict';
|
|
|
|
|
2020-04-30 17:48:53 +02:00
|
|
|
import Vue from 'vue';
|
2020-05-07 17:45:04 +02:00
|
|
|
|
2020-08-12 10:48:18 +02:00
|
|
|
import '@mdi/font/css/materialdesignicons.css';
|
2020-05-07 17:45:04 +02:00
|
|
|
import '@/scss/main.scss';
|
2020-05-04 17:33:50 +02:00
|
|
|
|
|
|
|
import App from '@/App.vue';
|
|
|
|
import store from '@/store';
|
2020-05-25 15:37:59 +02:00
|
|
|
import i18n from '@/i18n';
|
2020-04-30 17:48:53 +02:00
|
|
|
|
2020-05-29 18:19:35 +02:00
|
|
|
i18n.locale = store.state.settings.locale;
|
2020-04-30 17:48:53 +02:00
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
|
|
|
new Vue({
|
2020-05-04 17:33:50 +02:00
|
|
|
render: h => h(App),
|
2020-05-25 15:37:59 +02:00
|
|
|
store,
|
|
|
|
i18n
|
2020-04-30 17:48:53 +02:00
|
|
|
}).$mount('#app');
|