primevue-mirror/src/components/splitbutton/SplitButton.d.ts

13 lines
302 B
TypeScript
Raw Normal View History

2019-05-29 11:07:43 +00:00
import Vue from 'vue';
export declare class SplitButton extends Vue {
label?: string;
icon?: string;
model?: any[];
disabled?: boolean;
tabindex?: string;
autoZIndex?: boolean;
baseZIndex?: number;
2020-03-04 11:47:12 +00:00
appendTo?: string;
2019-05-29 11:07:43 +00:00
$emit(eventName: 'click', event: Event): this;
}