main.js 540 B

12345678910111213141516171819202122
  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. // document.title = "邹平养老"
  18. new Vue({
  19. router,
  20. store,
  21. render: h => h(App)
  22. }).$mount('#app')