FEAT => 本次更新项目为:

新封装技术栈
This commit is contained in:
超级老白兔
2025-08-01 14:30:51 +08:00
parent b59ddea3b6
commit 325d53cad6
190 changed files with 98 additions and 13878 deletions

22
ckApp/main.js Normal file
View File

@@ -0,0 +1,22 @@
import App from './App'
// #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)
return {
app
}
}
// #endif