Files
urbanLifeline/urbanLifelineWeb/packages/workcase_wechat/main.uts

9 lines
146 B
Plaintext
Raw 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
}
}