48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
import Vue from 'vue';
|
|
|
|
import 'normalize.css/normalize.css'; // A modern alternative to CSS resets
|
|
import ElementUI from 'element-ui';
|
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
import '@/styles/index.scss'; // global css
|
|
import 'quill/dist/quill.snow.css';
|
|
|
|
import LangStorage from '@/utils/lang';
|
|
import App from './App';
|
|
import VueI18n from 'vue-i18n';
|
|
|
|
import store from './store/index';
|
|
import router from './router/index';
|
|
import CancelMouseState from '@/mixin/CancelMouseState.js';
|
|
Vue.mixin(CancelMouseState);
|
|
|
|
import '@/icons'; // icon
|
|
import '@/permission'; // permission control
|
|
import '@/scripts/GlobalPlugin';
|
|
import '@/directive/dialogDrag/index.js';
|
|
import '@/directive/dialogDragWidth/index.js';
|
|
import '@/directive/dialogLoading/index.js';
|
|
import '@/directive/drag/index.js';
|
|
import '@/directive/focus/index.js';
|
|
import '@/directive/quickMenuDrag/index.js';
|
|
import '@/directive/waves/index.js';
|
|
import messages from '@/i18n/index';
|
|
|
|
Vue.use(ElementUI);
|
|
Vue.use(VueI18n);
|
|
Vue.config.devtools = true; // 开发环境显示vue控制台
|
|
Vue.config.productionTip = false;
|
|
|
|
export const i18n = new VueI18n({
|
|
locale: LangStorage.getLang('zh'),
|
|
messages
|
|
});
|
|
Vue.use(ElementUI, {i18n: (key, value) => i18n.t(key, value)});
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
store,
|
|
i18n,
|
|
render: h => h(App)
|
|
});
|