2025-09-25 14:58:50 +08:00
|
|
|
import { createApp } from "vue";
|
2025-09-28 14:19:57 +08:00
|
|
|
import ElementPlus from "element-plus";
|
|
|
|
|
import "element-plus/dist/index.css";
|
2025-09-25 14:58:50 +08:00
|
|
|
import App from "./App.vue";
|
|
|
|
|
import "./registerServiceWorker";
|
|
|
|
|
import router from "./router";
|
|
|
|
|
import store from "./store";
|
|
|
|
|
|
|
|
|
|
const app = createApp(App);
|
2025-09-28 14:19:57 +08:00
|
|
|
app.use(ElementPlus);
|
2025-09-25 14:58:50 +08:00
|
|
|
app.use(store);
|
|
|
|
|
app.use(router);
|
|
|
|
|
|
|
|
|
|
app.mount("#app");
|