仁慧眼-上市公司微财报PC版前端
hailu
2022-11-02 77c50c239cf12e9d14b4eb1812f72125be4f615b
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
36
37
38
39
40
41
42
43
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
 
 
Vue.config.productionTip = false
 
 
 
import './assets/js/rem.js'
import '@/style/base.css'
import '@/style/iconfont.css'
 
import kefu from './assets/js/kefu/kefu.js'
Vue.use(kefu);
 
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
 
import Vant from 'vant';
import 'vant/lib/index.css';
Vue.use(Vant);
 
import util from './libs/util.js';
Vue.prototype.$util = util;
 
import store from './store/index.js'
Vue.prototype.store = store;
 
import axios from 'axios'
Vue.prototype.$axios = axios
Vue.prototype.$axios.defaults.baseURL = process.env.NODE_ENV === 'development' ? '/api' : '/';
 
 
/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>'
})