This commit is contained in:
fxy060608
2021-12-02 20:56:45 +08:00
parent 479f72eb03
commit c218ad3eda
10 changed files with 56 additions and 46 deletions
+8
View File
@@ -0,0 +1,8 @@
import { createSSRApp } from "vue";
import App from "./App.vue";
export function createApp() {
const app = createSSRApp(App);
return {
app,
};
}