mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 17:32:36 +00:00
Fixed #686 - CascadeSelect
This commit is contained in:
parent
be523323af
commit
23be3cfbb6
44 changed files with 4091 additions and 0 deletions
29
src/components/cascadeselect/CascadeSelect.d.ts
vendored
Normal file
29
src/components/cascadeselect/CascadeSelect.d.ts
vendored
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue