d2-admin/src.mobile/main.js

16 lines
247 B
JavaScript
Raw Normal View History

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')