element-plus/packages/dropdown-item/index.ts

12 lines
351 B
TypeScript

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<typeof DropdownItem> = DropdownItem
export default _DropdownItem