Files
account/resources/mobile/main.js
2026-01-18 18:03:40 +08:00

16 lines
191 B
JavaScript

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