大数据展示系统-前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
765 B

3 years ago
3 years ago
3 years ago
  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. // element-ui
  6. import ElementUI from 'element-ui'
  7. import 'element-ui/lib/theme-chalk/index.css'
  8. Vue.use(ElementUI)
  9. // 适配flex
  10. import '@/common/flexible.js'
  11. // 引入全局css
  12. import './assets/styles/style.scss'
  13. import './assets/iconfont/iconfont.js'
  14. import './assets/fonts/fonts.css'
  15. import axios from 'axios'
  16. Vue.prototype.$axios = axios
  17. // 馆代码 1201为东西湖馆代码 / 本地测试用FTZN
  18. Vue.prototype.libcode = 'FTZN'
  19. // Vue.prototype.libcode = '1201'
  20. // 引入echart
  21. import echarts from 'echarts'
  22. Vue.prototype.$echarts = echarts
  23. Vue.config.productionTip = false
  24. new Vue({
  25. router,
  26. store,
  27. render: (h) => h(App)
  28. }).$mount('#app')