-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathmain.js
More file actions
33 lines (26 loc) · 765 Bytes
/
main.js
File metadata and controls
33 lines (26 loc) · 765 Bytes
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
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import 'element-ui/lib/theme-chalk/index.css';
import './styles/index.css'
import './styles/global.css'
import ElementUI from 'element-ui';
// import Antd from 'ant-design-vue';
// import 'ant-design-vue/dist/antd.less';
import IconFont from './components/IconFont/iconfont'
import VueLazyload from 'vue-lazyload'
import ECharts from 'vue-echarts'
import 'echarts/lib/chart/bar'
import 'echarts/lib/component/tooltip'
Vue.component('v-chart', ECharts)
Vue.use(ElementUI);
// Vue.use(Antd);
Vue.use(VueLazyload);
Vue.component('IconFont', IconFont)
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')