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