9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import ElementPlus from 'element-plus-cisdi';
|
|
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
import 'element-plus-cisdi/dist/index.css';
|
|
|
|
const app = createApp(App);
|
|
app.use(ElementPlus);
|
|
app.mount('#app');
|