| | |
| | | import './error'; // 日志 |
| | | import './cache';//页面缓存 |
| | | import store from './store'; |
| | | import {loadStyle} from './util/util' |
| | | import { loadStyle } from './util/util' |
| | | import * as urls from '@/config/env'; |
| | | import Element from 'element-ui'; |
| | | import { |
| | |
| | | import avueUeditor from 'avue-plugin-ueditor'; |
| | | import website from '@/config/website'; |
| | | import crudCommon from '@/mixins/crud'; |
| | | |
| | | import Print from '@/assets/js/print'; |
| | | |
| | | Vue.use(Print); |
| | | |
| | | // Window.onresize 事件 动态调整窗口 |
| | | import "@/store/onresize"; |
| | | |
| | | import Map from './components/map/main'; |
| | | Vue.component('Map', Map); |
| | | |
| | | // 注册全局crud驱动 |
| | | window.$crudCommon = crudCommon; |
| | | // 加载Vue拓展 |
| | |
| | | |
| | | Vue.config.productionTip = false; |
| | | |
| | | new Vue({ |
| | | let myVue = new Vue({ |
| | | router, |
| | | store, |
| | | i18n, |
| | | render: h => h(App) |
| | | }).$mount('#app'); |
| | | |
| | | |
| | | export default myVue |