dykj-uniapp-store/main.js

16 lines
221 B
JavaScript
Raw Normal View History

2024-05-24 09:16:17 +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,
};
}