Merge pull request #1227 from Aysnine/patch-1
fix CascadeSelectProp.optionGroupChildren typepull/1281/head
commit
0cc7a4510b
|
@ -6,7 +6,7 @@ interface CascadeSelectProps {
|
||||||
optionLabel?: string;
|
optionLabel?: string;
|
||||||
optionValue?: any;
|
optionValue?: any;
|
||||||
optionGroupLabel?: string;
|
optionGroupLabel?: string;
|
||||||
optionGroupChildren?: string;
|
optionGroupChildren?: string[];
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
dataKey?: string;
|
dataKey?: string;
|
||||||
|
|
|
@ -167,7 +167,7 @@ data() {
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>optionGroupChildren</td>
|
<td>optionGroupChildren</td>
|
||||||
<td>string</td>
|
<td>array</td>
|
||||||
<td>null</td>
|
<td>null</td>
|
||||||
<td>Property name or getter function to retrieve the items of a group.</td>
|
<td>Property name or getter function to retrieve the items of a group.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue