This commit is contained in:
kron
2025-11-25 15:02:13 +08:00
commit 4d470ea44a
13 changed files with 11508 additions and 0 deletions

10
src/main.js Normal file
View File

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