Files
wen-yi/src/main.ts
T
SnhAenIgseAl 42c4d10c16 first commit
2026-04-20 13:48:06 +08:00

15 lines
263 B
TypeScript

import { createSSRApp } from 'vue'
import { setupStore } from './stores'
import App from './App.vue'
import share from './utils/share'
export function createApp() {
const app = createSSRApp(App)
setupStore(app);
app.mixin(share)
return {
app,
}
}