| 123456789101112131415161718 |
- import Vue from 'vue'
- import './plugins/axios'
- import App from './App.vue'
- import store from './store'
- import router from './router'
- import Vant from 'vant'
- import 'vant/lib/index.css'
- Vue.use(Vant)
- Vue.config.productionTip = false
- new Vue({
- store,
- router,
- render: h => h(App)
- }).$mount('#app')
|