Files
shoot-miniprograms/src/main.js

10 lines
152 B
JavaScript
Raw Normal View History

2025-04-10 11:11:46 +08:00
import { createSSRApp } from 'vue'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
return {
app,
}
}