mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import Popconfirm from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Popconfirm.install = (app: App): void => {
|
|
app.component(Popconfirm.name, Popconfirm)
|
|
}
|
|
|
|
const _Popconfirm = Popconfirm as SFCWithInstall<typeof Popconfirm>
|
|
|
|
export default _Popconfirm
|
|
export const ElPopconfirm = _Popconfirm
|