first commit

This commit is contained in:
lxj
2025-06-26 12:38:35 +08:00
commit c536475e19
1236 changed files with 186274 additions and 0 deletions

27
main.js Normal file
View File

@@ -0,0 +1,27 @@
import App from './App'
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
import Http from './common/http'
Vue.prototype.$http = Http
import Shop from './common/http/shop'
Vue.prototype.$shop = Shop
import utils from './common/utils'
Vue.prototype.$utils = utils
import eatery from './common/http/eatery'
Vue.prototype.$eatery = eatery
import moment from 'moment'
moment.locale('zh-cn')
Vue.prototype.$moment = moment
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
const app = new Vue({
...App
})
app.$mount()