| | |
| | | import Vue from 'vue' |
| | | import App from './App.vue' |
| | | // import router from './router' |
| | | import App from './App2.vue' |
| | | import router from './router' |
| | | import store from './store' |
| | | // import registerDirectives from './directive' |
| | | import echarts from 'echarts' |
| | | import echartsDarkTheme from '@/styles/theme-dark/echarts/theme.json' |
| | | import ElementUI from 'element-ui' |
| | | import 'element-ui/lib/theme-chalk/index.css' |
| | | |
| | | Vue.config.productionTip = false |
| | | |
| | |
| | | } |
| | | |
| | | window.vm = new Vue({ |
| | | // router, |
| | | router, |
| | | store, |
| | | render: h => h(App), |
| | | }).$mount('#app') |