18 lines
427 B
JavaScript
18 lines
427 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
Vue.use(ElementUI)
|
|
import Plugin from 'v-fit-columns';
|
|
Vue.use(Plugin);
|
|
import * as echarts from 'echarts'
|
|
Vue.prototype.$echarts = echarts
|
|
import * as Three from 'three'
|
|
Vue.config.productionTip = false
|
|
new Vue({
|
|
router,
|
|
render: h => h(App),
|
|
}).$mount('#app')
|