10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import { createApp } from "vue";
|
|
import ElementPlus from "element-plus";
|
|
import "element-plus/dist/index.css";
|
|
import App from "./App.vue";
|
|
import "./style.css";
|
|
|
|
const app = createApp(App);
|
|
app.use(ElementPlus);
|
|
app.mount("#app");
|