更新uniapp1

This commit is contained in:
2026-07-15 17:01:15 +08:00
parent 1f1a7e7efb
commit 743c5cb4eb
16 changed files with 1775 additions and 137 deletions
+26
View File
@@ -0,0 +1,26 @@
import App from './App'
import uviewPlus from 'uview-plus'
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
app.use(uviewPlus)
return {
app
}
}
// #endif