This commit is contained in:
2026-01-18 18:03:40 +08:00
parent f038dbab41
commit 9259bda54b
7 changed files with 40 additions and 12 deletions

View File

@@ -1,8 +1,14 @@
import App from "./App";
import { createSSRApp } from "vue";
import boot from './boot'
export function createApp() {
const app = createSSRApp(App);
const app = createSSRApp(App)
app.use(boot)
return {
app,
};