Files
zgty-mas-m/main.js
houjunxiang 386f1e7466 1
2025-10-09 18:19:55 +08:00

16 lines
265 B
JavaScript

import App from './App'
import { createSSRApp } from 'vue'
import { setupPinia } from './nx/store'
import uviewPlus from '@/uview-plus'
export function createApp() {
const app = createSSRApp(App)
setupPinia(app)
app.use(uviewPlus)
return {
app
}
}