Signed-off-by: 吴文峰 <kevin@lmve.net>

This commit is contained in:
2026-04-17 16:41:05 +08:00
parent 5146e98479
commit e6eeae6eb8
4173 changed files with 0 additions and 928730 deletions
-24
View File
@@ -1,24 +0,0 @@
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