You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/dropdown/index.ts

23 lines
588 B

import type { App, Plugin } from 'vue';
import Dropdown from './dropdown';
import DropdownButton from './dropdown-button';
7 years ago
export type { DropdownProps } from './dropdown';
export type { DropdownButtonProps } from './dropdown-button';
7 years ago
Dropdown.Button = DropdownButton;
/* istanbul ignore next */
Dropdown.install = function (app: App) {
5 years ago
app.component(Dropdown.name, Dropdown);
app.component(DropdownButton.name, DropdownButton);
return app;
};
export { DropdownButton };
export default Dropdown as typeof Dropdown &
Plugin & {
readonly Button: typeof DropdownButton;
};