10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
import ElementPlus from "element-plus";
|
|
import "element-plus/dist/index.css";
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
import "./styles/main.css";
|
|
|
|
createApp(App).use(createPinia()).use(router).use(ElementPlus).mount("#app");
|