You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
203 B

4 months ago
import { createApp } from 'vue'
import App from './App.vue'
4 months ago
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
4 months ago
4 months ago
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')