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