ZZJ
2021-12-20 05d754bb09ba4aeddd60320d33d583d388434c2f
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
import Vue from 'vue';
import App from './App.vue';
 
import TreeDataPool from "@/Pool/TreeData";
 
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import "@/assets/css/element-variables.scss";
Vue.use(ElementUI)
 
const onlyTreeDataPool = new TreeDataPool
 
const mixin = {
  data() {
    return {
      TreeDataPool: onlyTreeDataPool
    };
  },
};
 
Vue.mixin(mixin);
 
new Vue({
  el: '#app',
  render: h => h(App)
})