12345678910111213141516171819 |
- import Vue from 'vue'
- import App from './App.vue'
- import router from './router'
- import store from './store'
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- import echarts from 'echarts'
- import http from "./utils/http";
- Vue.config.productionTip = false
- Vue.use(ElementUI);
- Vue.prototype.$echarts = echarts
- Vue.prototype.$http = http;
- new Vue({
- router,
- store,
- render: h => h(App)
- }).$mount('#app')
|