15 lines
397 B
TypeScript
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"));
|