import { App } from "vue"; import { Popconfirm } from "ant-design-vue"; const install = (app: App) => { app.component("c-popconfirm", Popconfirm); }; export default { install, };