mall-app-t/main.js

13 lines
222 B
JavaScript
Raw Normal View History

2024-05-22 15:42:13 +08:00
import App from './App'
import { setupPinia } from './peach/store'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
setupPinia(app)
return {
app,
}
}