feat: uni-app 前端骨架(登录/孩子/地图/闯关/结算)

This commit is contained in:
2026-08-13 12:54:45 +08:00
parent ae79c13834
commit 841191185e
16 changed files with 8119 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { createSSRApp } from 'vue'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
return { app }
}