UNPKG

element-plus

Version:

A Component Library for Vue3.0

12 lines (8 loc) 317 B
import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import Popconfirm from './src/index.vue' Popconfirm.install = (app: App): void => { app.component(Popconfirm.name, Popconfirm) } const _Popconfirm: SFCWithInstall<typeof Popconfirm> = Popconfirm export default _Popconfirm