Files

15 lines
215 B
TypeScript
Raw Permalink Normal View History

2025-11-13 10:36:23 +08:00
import { createSSRApp } from "vue";
import { cool } from "./cool";
import App from "./App.uvue";
import "./router";
export function createApp() {
const app = createSSRApp(App);
cool(app);
return {
app
};
}