zuojincheng
2024-10-22 d3e02569fdef4d270e896bea2f9894f83c4503f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
 
import axios from "axios"
Vue.prototype.$axios = axios
 
import dayjs from "dayjs"
Vue.prototype.$dayjs = dayjs
 
import axiosAdmin from './axios/admin'
Vue.prototype.$axiosAdmin = axiosAdmin
 
import qs from 'qs'
Vue.prototype.$qs = qs
 
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);
 
import '../src/assets/iconfont/iconfont.css';
 
Vue.config.productionTip = false
 
import 'animate.css'
 
const bus = new Vue()
Vue.prototype.$bus = bus
 
new Vue({
  router,
  store,
  render: function (h) { return h(App) }
}).$mount('#app')