29 lines
569 B
JavaScript
29 lines
569 B
JavaScript
/*
|
|
* @Author: Do not edit
|
|
* @Date: 2023-12-27 16:41:40
|
|
* @LastEditTime: 2024-01-09 17:50:38
|
|
* @LastEditors: DY
|
|
* @Description:
|
|
*/
|
|
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
import Vant from 'vant'
|
|
import 'vant/lib/index.css'
|
|
import axios from 'axios'
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.prototype.$http = axios
|
|
|
|
Vue.use(Vant)
|
|
Vue.use(ElementUI)
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|