Files
test/main.uts
T
2026-03-11 09:44:18 +08:00

9 lines
154 B
Plaintext

import App from './App.uvue'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}