Fixed #686 - CascadeSelect

This commit is contained in:
Cagatay Civici 2020-12-07 17:36:46 +03:00
parent be523323af
commit 23be3cfbb6
44 changed files with 4091 additions and 0 deletions

View file

@ -0,0 +1,29 @@
import Vue, { VNode } from 'vue';
declare class CascadeSelect extends Vue {
modelValue?: any;
options?: any[];
optionLabel?: string;
optionValue?: any;
optionGroupLabel?: string;
optionGroupChildren?: string;
placeholder?: string;
disabled?: boolean;
dataKey?: string;
tabindex?: string;
inputId?: string;
ariaLabelledBy?: string;
appendTo?: string;
$emit(eventName: 'update:modelValue', value: string): this;
$emit(eventName: 'change', e: { originalEvent: Event, value: any }): this;
$emit(eventName: 'change-group', e: { originalEvent: Event, value: any }): this;
$emit(eventName: 'before-show'): this;
$emit(eventName: 'before-leave'): this;
$emit(eventName: 'show'): this;
$emit(eventName: 'hide'): this;
$slot: {
option: VNode[];
}
}
export default CascadeSelect;