mirror of https://github.com/Fabio286/antares.git
20 lines
350 B
JavaScript
20 lines
350 B
JavaScript
'use strict';
|
|
|
|
import Vue from 'vue';
|
|
|
|
import '@mdi/font/css/materialdesignicons.css';
|
|
import '@/scss/main.scss';
|
|
|
|
import App from '@/App.vue';
|
|
import store from '@/store';
|
|
import i18n from '@/i18n';
|
|
|
|
i18n.locale = store.state.settings.locale;
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
render: h => h(App),
|
|
store,
|
|
i18n
|
|
}).$mount('#app');
|