skyouc
2025-06-22 fee38f39e36bcda9924f5b26dca609dda6b331e0
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')