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;
|
2018-09-19 05:21:57 +00:00
|
|
|
|
|
|
|
/* 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
|
|
|
};
|
2018-09-19 05:21:57 +00:00
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
export default Dropdown;
|