添加UniApp

This commit is contained in:
2025-08-11 23:18:31 +08:00
parent 2f3d39fb00
commit 42cc8cf2e2
61 changed files with 1237 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
}
}