first commit

This commit is contained in:
2025-02-20 13:46:19 +08:00
commit 38fbfdaef6
37 changed files with 908 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { createApp } from "vue";
import App from "./App.vue";
import ElementPlus from "element-plus";
import "element-plus/dist/index.css";
import zhCn from "element-plus/dist/locale/zh-cn.mjs";
import router from "./router";
const app = createApp(App);
app.use(router);
app.use(ElementPlus);
app.use(ElementPlus, {
locale: zhCn,
// 支持 large、default、small
size: "default",
});
app.mount("#app");