微信小程序uniapp

This commit is contained in:
2025-12-08 19:01:09 +08:00
parent 56791e05ec
commit 5d8d1dd320
8 changed files with 249 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import App from './App.uvue'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}