ant-design-vue/components/dropdown/index.js

16 lines
408 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Dropdown from './dropdown';
import DropdownButton from './dropdown-button';
2018-01-29 10:57:20 +00:00
2019-01-12 03:33:27 +00:00
export { DropdownProps } from './dropdown';
export { DropdownButtonProps } from './dropdown-button';
2018-01-29 10:57:20 +00:00
2019-01-12 03:33:27 +00:00
Dropdown.Button = DropdownButton;
/* istanbul ignore next */
2020-06-20 07:14:51 +00:00
Dropdown.install = function(app) {
app.component(Dropdown.name, Dropdown);
app.component(DropdownButton.name, DropdownButton);
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Dropdown;