项目启动

This commit is contained in:
comlibmb
2026-01-21 16:41:11 +08:00
parent d7f95f7fa5
commit 9eb05253d3
8 changed files with 328 additions and 2 deletions

7
main.uts Normal file
View File

@@ -0,0 +1,7 @@
import { createSSRApp } from 'vue'
import App from './App.uvue'
export function createApp() {
const app = createSSRApp(App)
return { app }
}