first commit

This commit is contained in:
cg
2026-09-03 22:21:38 +08:00
commit 63ce526195
34 changed files with 2139 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
}
}