mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
b19d2fc374
* fix: correct bundle export * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update * chore: update
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import { App } from 'vue'
|
|
import Dropdown from './src/dropdown.vue'
|
|
import DropdownItem from './src/dropdown-item.vue'
|
|
import DropdownMenu from './src/dropdown-menu.vue'
|
|
|
|
Dropdown.install = (app: App): void => {
|
|
app.component(Dropdown.name, Dropdown)
|
|
}
|
|
|
|
export default Dropdown
|