mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* fix: correct bundle export * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import { App } from 'vue'
|
|
import DropdownItem from '../dropdown/src/dropdown-item.vue'
|
|
|
|
DropdownItem.install = (app: App): void => {
|
|
app.component(DropdownItem.name, DropdownItem)
|
|
}
|
|
|
|
export default DropdownItem
|