element-plus/website/play.js

9 lines
205 B
JavaScript
Raw Normal View History

2020-08-25 09:58:26 +08:00
import { createApp } from 'vue'
import install from 'element-plus'
import App from './play/index.vue'
2020-08-25 09:58:26 +08:00
import '../src/style/element-ui@2.13.2.css'
const app = createApp(App)
install(app)
app.mount('#app')