element-plus/packages/dialog/index.ts
jeremywu 5bd50ac16e
fix(dialog): fix dialog not updating slots issue (#686)
- Remake dialog with templates instead of render function
2020-11-24 23:06:26 +08:00

9 lines
165 B
TypeScript

import { App } from 'vue'
import Dialog from './src/index.vue'
Dialog.install = (app: App): void => {
app.component(Dialog.name, Dialog)
}
export default Dialog