mall-app-t/main.js

13 lines
222 B
JavaScript

import App from './App'
import { setupPinia } from './peach/store'
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
setupPinia(app)
return {
app,
}
}