blob: 3e93f1615e7f1411e77323192da2514c094c812d [file] [log] [blame]
import Vue from 'vue'
import App from './App.vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import * as echarts from 'echarts';
import $ from 'jquery'
Vue.prototype.$=$
Vue.prototype.$echarts = echarts
Vue.use(ElementUI);
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')