first commit

This commit is contained in:
编码猿
2024-09-27 01:09:14 +08:00
commit 9420feb4c9
56 changed files with 1811 additions and 0 deletions

13
UniAppMobile/main.js Normal file
View File

@@ -0,0 +1,13 @@
import Vue from 'vue'
import App from './App'
import config from './config/index.js'
Vue.config.productionTip = false
App.mpType = 'app'
Vue.prototype.$config = config
const app = new Vue({
...App
})
app.$mount()