init proj

This commit is contained in:
xsl
2026-03-11 17:45:38 +08:00
commit 4f250501c7
8 changed files with 237 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
}
}