mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
ef92b6c11c
* Add overlay component; Dialog component almost done * feat(dialog): add use-lockscreen * feat(dialog): coding completed awaiting tests * feat(dialog): finish writing test cases * fix test failures * Address PR comments * fallback some changes
6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
import { App } from 'vue'
|
|
import Dialog from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(Dialog.name, Dialog)
|
|
}
|