mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
16 lines
408 B
JavaScript
16 lines
408 B
JavaScript
import Dropdown from './dropdown';
|
|
import DropdownButton from './dropdown-button';
|
|
|
|
export { DropdownProps } from './dropdown';
|
|
export { DropdownButtonProps } from './dropdown-button';
|
|
|
|
Dropdown.Button = DropdownButton;
|
|
|
|
/* istanbul ignore next */
|
|
Dropdown.install = function(app) {
|
|
app.component(Dropdown.name, Dropdown);
|
|
app.component(DropdownButton.name, DropdownButton);
|
|
};
|
|
|
|
export default Dropdown;
|