main.js 210 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { createApp } from "vue"; import App from "./App.vue"; import ElementPlus from "element-plus"; import "element-plus/dist/index.css"; const app = createApp(App); app.use(ElementPlus); app.mount("#app");