main.js 794 B

123456789101112131415161718192021222324252627
  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router/router'
  4. import store from './store/index'
  5. import '../../styles/index.css'
  6. import './styles/index.css'
  7. import Vant, {
  8. Lazyload
  9. } from 'vant'
  10. import 'vant/lib/index.css'
  11. import 'lib-flexible/flexible'
  12. import echarts from 'echarts'
  13. Vue.config.productionTip = false
  14. Vue.use(Vant)
  15. Vue.use(Lazyload)
  16. Vue.prototype.$echarts = echarts
  17. // let urlCreatesign = localStorage.getItem('urlCreatesign')
  18. // let urlGateway = localStorage.getItem('urlGateway')
  19. // // let urlGateway = urldomaingateway
  20. // Vue.prototype.$urlCreatesign = urlCreatesign
  21. // Vue.prototype.$urlGateway = urlGateway
  22. // Vue.prototype.$appId = 'zpylgzwgt'
  23. new Vue({
  24. router,
  25. store,
  26. render: h => h(App)
  27. }).$mount('#app')