mall-uniapp/main.js

16 lines
221 B
JavaScript
Raw Normal View History

2022-11-22 07:45:36 +00: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,
};
}