import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import DropdownItem from '../dropdown/src/dropdown-item.vue' DropdownItem.install = (app: App): void => { app.component(DropdownItem.name, DropdownItem) } const _DropdownItem: SFCWithInstall = DropdownItem export default _DropdownItem