| import Vue from 'vue' | 
| import App from './App.vue' | 
| import Ajax from './utils/ajax.js' | 
|   | 
| import './assets/common.less' | 
|   | 
| import dataV from '@jiaminghi/data-view' | 
| import ElementUI from 'element-ui' | 
| import 'element-ui/lib/theme-chalk/index.css' | 
|   | 
| Vue.config.productionTip = false | 
| Vue.prototype.$ajax = Ajax | 
| Vue.use(ElementUI) | 
| Vue.use(dataV) | 
|   | 
| global.$ajax = Ajax | 
|   | 
| new Vue({ | 
|   render: h => h(App) | 
| }).$mount('#app') |