10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/lib/theme-chalk/index.css'
|
|
|
|
const app = createApp(App)
|
|
app.use(ElementPlus)
|
|
app.mount('#app')
|