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

23 lines
577 B
TypeScript
Raw Normal View History

import { App } from 'vue';
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
type Types = typeof Dropdown;
interface DropdownTypes extends Types {
Button: typeof DropdownButton;
}
2019-01-12 03:33:27 +00:00
Dropdown.Button = DropdownButton;
/* istanbul ignore next */
Dropdown.install = function(app: App) {
2020-06-20 07:14:51 +00:00
app.component(Dropdown.name, Dropdown);
app.component(DropdownButton.name, DropdownButton);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
export default Dropdown as DropdownTypes;