mall-app-b/main.js

13 lines
222 B
JavaScript
Raw Normal View History

2024-04-30 17:45:03 +08:00
import App from './App'
import { createSSRApp } from 'vue'
import { setupPinia } from './peach/store'
export function createApp() {
const app = createSSRApp(App)
setupPinia(app)
return {
app,
}
}