12345678910111213141516171819 |
- import Vue from 'vue';
- import App from './components/App.vue';
- import router from './router';
- import store from './store';
- import ElementUI from 'element-ui';
- import './theme/index.css';
- import locale from 'element-ui/lib/locale/lang/ru-RU';
- //Vue.config.productionTip = false;
- Vue.use(ElementUI, { locale });
- new Vue({
- router,
- store,
- render: h => h(App),
- }).$mount('#app');
|