mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
import { createApp } from 'vue'
|
|
import install from 'element-plus'
|
|
import App from './play/index.vue'
|
|
import '../src/style/element-ui@2.13.2.css'
|
|
const app = createApp(App)
|
|
install(app)
|
|
app.mount('#app')
|
|
|