Merge pull request #1227 from Aysnine/patch-1

fix CascadeSelectProp.optionGroupChildren type
pull/1281/head
Cagatay Civici 2021-05-18 12:41:15 +03:00 committed by GitHub
commit 0cc7a4510b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ interface CascadeSelectProps {
optionLabel?: string;
optionValue?: any;
optionGroupLabel?: string;
optionGroupChildren?: string;
optionGroupChildren?: string[];
placeholder?: string;
disabled?: boolean;
dataKey?: string;

View File

@ -167,7 +167,7 @@ data() {
</tr>
<tr>
<td>optionGroupChildren</td>
<td>string</td>
<td>array</td>
<td>null</td>
<td>Property name or getter function to retrieve the items of a group.</td>
</tr>
@ -609,4 +609,4 @@ img {
}
}
}
</script>
</script>