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 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)
| });
|
|