import Vue from 'vue' import App from './App.vue' import ElementUI from 'element-ui' import store from './store/index.js'; import 'element-ui/lib/theme-chalk/index.css' import * as echarts from 'echarts'; import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree } from "@/until/ruoyi.js"; import './until/drawDialog'; Vue.prototype.$bus = new Vue(); Vue.config.productionTip = false Vue.prototype.parseTime = parseTime; Vue.prototype.$echarts = echarts; Vue.use(ElementUI) // new Vue({ // render: h => h(App), // }).$mount('#app') new Vue({ el: '#app', store, render: h => h(App) });