moto-App/src/main.ts

9 lines
155 B
TypeScript
Raw Normal View History

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