cygnal/src/main.js

33 lines
846 B
JavaScript
Raw Normal View History

import '@/polyfills';
2018-06-25 18:29:57 +02:00
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue';
import '@/css/vendor/roboto-fontface.css';
import '@/css/vendor/material-icons.css';
import 'leaflet/dist/leaflet.css'; // eslint-disable-line import/first
2018-07-27 14:40:42 +02:00
import 'vuetify/src/stylus/app.styl';
2018-07-27 14:40:42 +02:00
import App from '@/App.vue';
import i18n from '@/i18n';
import router from '@/router';
import store from '@/store';
import '@/vuetify';
2018-06-25 18:29:57 +02:00
2018-07-10 14:32:48 +02:00
// Ensure locale is correctly set from the store value
2018-07-12 17:48:26 +02:00
store.dispatch('setLocale', { locale: store.state.settings.locale });
2018-07-10 14:32:48 +02:00
2018-06-25 18:29:57 +02:00
Vue.config.productionTip = false;
new Vue({ // eslint-disable-line no-new
2018-06-25 18:29:57 +02:00
el: '#app',
router,
i18n,
store,
2018-06-25 18:29:57 +02:00
components: { App },
render(h) {
return h('App');
},
2018-06-25 18:29:57 +02:00
});