`1`
pjb
2025-07-08 d27a9dd433ff0065e21555a6d59c004828f5345a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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')