| 123456789101112131415161718192021222324252627 |
- import Vue from 'vue'
- import App from './App.vue'
- import router from './router/router'
- import store from './store/index'
- import '../../styles/index.css'
- import './styles/index.css'
- import Vant, {
- Lazyload
- } from 'vant'
- import 'vant/lib/index.css'
- import 'lib-flexible/flexible'
- import echarts from 'echarts'
- Vue.config.productionTip = false
- Vue.use(Vant)
- Vue.use(Lazyload)
- Vue.prototype.$echarts = echarts
- // let urlCreatesign = localStorage.getItem('urlCreatesign')
- // let urlGateway = localStorage.getItem('urlGateway')
- // // let urlGateway = urldomaingateway
- // Vue.prototype.$urlCreatesign = urlCreatesign
- // Vue.prototype.$urlGateway = urlGateway
- // Vue.prototype.$appId = 'zpylgzwgt'
- new Vue({
- router,
- store,
- render: h => h(App)
- }).$mount('#app')
|