2021-02-09 19:04:55 +00:00
|
|
|
interface SplitButtonProps {
|
2019-05-29 11:07:43 +00:00
|
|
|
label?: string;
|
|
|
|
icon?: string;
|
|
|
|
model?: any[];
|
|
|
|
disabled?: boolean;
|
|
|
|
tabindex?: string;
|
|
|
|
autoZIndex?: boolean;
|
|
|
|
baseZIndex?: number;
|
2020-03-04 11:47:12 +00:00
|
|
|
appendTo?: string;
|
2021-02-09 19:04:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
declare class SplitButton {
|
|
|
|
$props: SplitButtonProps;
|
2019-05-29 11:07:43 +00:00
|
|
|
$emit(eventName: 'click', event: Event): this;
|
2020-11-26 08:20:37 +00:00
|
|
|
}
|
|
|
|
|
2021-02-09 19:04:55 +00:00
|
|
|
export default SplitButton;
|