mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
import { createSSRApp } from 'vue';
|
|
import App from './App.vue';
|
|
import { setupStore } from '@/state';
|
|
|
|
export function createApp() {
|
|
const app = createSSRApp(App);
|
|
|
|
// Configure store
|
|
setupStore(app);
|
|
|
|
return {
|
|
app,
|
|
};
|
|
}
|