first commit

This commit is contained in:
SnhAenIgseAl
2026-03-31 16:10:12 +08:00
commit 3679c9b8ef
418 changed files with 64994 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { createSSRApp } from 'vue'
import { setupStore } from './stores'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
setupStore(app);
return {
app,
}
}