Files

9 lines
146 B
Plaintext
Raw Permalink Normal View History

2025-12-08 19:01:09 +08:00
import App from './App.uvue'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}