This commit is contained in:
acgist
2023-02-11 22:11:51 +08:00
parent 50f80bee2d
commit 5f85dfccca
112 changed files with 1770 additions and 1213 deletions

View File

@@ -1,5 +1,9 @@
import { createApp } from "vue";
import App from "./App.vue";
import "./assets/main.css";
import ElementPlus from "element-plus";
import "element-plus/dist/index.css";
createApp(App).mount("#app");
const app = createApp(App);
app.use(ElementPlus);
app.mount("#app");