Files
hfb_sys/frontend/src/main.ts
T
2026-05-22 22:02:45 +08:00

15 lines
397 B
TypeScript

import "element-plus/dist/index.css";
import "vant/lib/index.css";
import "./styles/base.css";
import ElementPlus from "element-plus";
import { createPinia } from "pinia";
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
const app = createApp(App);
app.use(createPinia()).use(router).use(ElementPlus);
router.isReady().then(() => app.mount("#app"));