uniappX项目初始化

This commit is contained in:
2026-06-07 10:56:43 +08:00
commit b004e7527b
10 changed files with 252 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import App from './App.uvue'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}