Spaces:
Running
Running
File size: 163 Bytes
e3bbdaf | 1 2 3 4 5 6 7 8 9 | import { createSSRApp } from "vue";
import App from "./App.vue";
export function createApp() {
const app = createSSRApp(App);
return {
app,
};
}
|