项目初始化创建

This commit is contained in:
ray
2024-09-17 10:44:02 +08:00
commit 3a70cb6724
16 changed files with 8308 additions and 0 deletions

8
src/main.ts Normal file
View File

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