Files
airz-uniapp/main.uts
T

10 lines
147 B
Plaintext
Raw Normal View History

2026-09-10 10:57:40 +08:00
import App from './App.uvue'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}