element-plus/packages/popconfirm/index.ts

9 lines
175 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import Popconfirm from './src/index.vue'
2020-10-29 17:28:26 +08:00
export default (app: App): void => {
app.component(Popconfirm.name, Popconfirm)
}
2020-10-29 17:28:26 +08:00
export { Popconfirm }