import Vue from 'vue';
|
import App from './App.vue';
|
import router from './router';
|
import store from './store';
|
import axios from 'axios'
|
import ElementUI from 'element-ui';
|
import 'element-ui/lib/theme-chalk/index.css';
|
import dataV from '@jiaminghi/data-view';
|
// 引入全局css
|
import './assets/scss/style.scss';
|
// 按需引入vue-awesome图标
|
import Icon from 'vue-awesome/components/Icon';
|
import 'vue-awesome/icons/chart-bar.js';
|
import 'vue-awesome/icons/chart-area.js';
|
import 'vue-awesome/icons/chart-pie.js';
|
import 'vue-awesome/icons/chart-line.js';
|
import 'vue-awesome/icons/align-left.js';
|
|
//引入echart
|
//4.x 引用方式
|
import echarts from 'echarts'
|
//5.x 引用方式为按需引用
|
//希望使用5.x版本的话,需要在package.json中更新版本号,并切换引用方式
|
//import * as echarts from 'echarts'
|
Vue.prototype.$echarts = echarts
|
Vue.config.productionTip = false;
|
Vue.prototype.$axios = axios
|
Vue.prototype.$bus = new Vue()
|
|
// 全局注册
|
Vue.component('icon', Icon);
|
Vue.use(dataV);
|
Vue.use(ElementUI);
|
Vue.prototype.$http = axios.create({
|
//设置20秒超时时间
|
timeout: 20000,
|
baseURL: 'http://127.0.0.1:8080', //这里写后端地址
|
});
|
|
new Vue({
|
router,
|
store,
|
render: (h) => h(App),
|
}).$mount('#app');
|