Files
WAI_Project_UNIX/main.ts

15 lines
229 B
TypeScript
Raw Normal View History

2025-07-21 16:47:04 +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
};
}