unibest/src/main.ts

9 lines
163 B
TypeScript
Raw Normal View History

2023-12-21 15:26:15 +08:00
import { createSSRApp } from "vue";
import App from "./App.vue";
export function createApp() {
const app = createSSRApp(App);
return {
app,
};
}