moto-App/src/main.ts
CHINAMI-3V5PQ9A\Administrator 9da58db536 初始化
2023-12-08 17:39:09 +08:00

9 lines
155 B
TypeScript

import { createSSRApp } from "vue";
import App from "./App.vue";
export function createApp() {
const app = createSSRApp(App);
return {
app,
};
}