123456789101112131415161718192021 |
- import Vue from 'vue'
- import App from './App.vue'
- import router from './router'
- import store from './store'
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- import Vant from 'vant';
- import 'vant/lib/index.css';
- import { Swipe, SwipeItem } from 'vant';
- Vue.use(Swipe);
- Vue.use(SwipeItem);
- Vue.config.productionTip = false;
- Vue.use(ElementUI);
- Vue.use(Vant);
- new Vue({
- router,
- store,
- render: h => h(App)
- }).$mount('#app')
|