yudao-mall-uniapp/main.js

16 lines
221 B
JavaScript
Raw Permalink Normal View History

2025-03-02 13:38:14 +08:00
import App from './App';
import { createSSRApp } from 'vue';
import { setupPinia } from './sheep/store';
export function createApp() {
const app = createSSRApp(App);
setupPinia(app);
return {
app,
};
}