2020-10-16 11:14:45 +08:00
|
|
|
import Popconfirm from './src/index.vue'
|
2020-10-29 17:28:26 +08:00
|
|
|
|
2021-08-24 13:36:48 +08:00
|
|
|
import type { App } from 'vue'
|
|
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
|
2020-11-20 20:24:16 +08:00
|
|
|
Popconfirm.install = (app: App): void => {
|
2020-10-16 11:14:45 +08:00
|
|
|
app.component(Popconfirm.name, Popconfirm)
|
|
|
|
}
|
2020-10-29 17:28:26 +08:00
|
|
|
|
2021-08-24 13:36:48 +08:00
|
|
|
const _Popconfirm = Popconfirm as SFCWithInstall<typeof Popconfirm>
|
2020-12-23 14:07:15 +08:00
|
|
|
|
|
|
|
export default _Popconfirm
|
2021-08-24 13:36:48 +08:00
|
|
|
export const ElPopconfirm = _Popconfirm
|