123456789101112131415 |
- import Vue from 'vue'
- import App from './App.vue'
- import router from './router'
- import store from './store'
- import 'flex.css'
- import './vant'
- Vue.config.productionTip = false
- new Vue({
- router,
- store,
- render: h => h(App)
- }).$mount('#app')
|