pull/1281/head
Tuğçe Küçükoğlu 2021-05-18 12:42:17 +03:00
commit bc3655b82a
4 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ const CascadeSelectProps = [
}, },
{ {
name: "optionGroupChildren", name: "optionGroupChildren",
type: "string", type: "array",
default: "null", default: "null",
description: "Property name or getter function to retrieve the items of a group." description: "Property name or getter function to retrieve the items of a group."
}, },

View File

@ -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;

View File

@ -66,7 +66,7 @@ export default {
type: Boolean, type: Boolean,
default: false default: false
}, },
inputClass: toString, inputClass: String,
inputStyle: null, inputStyle: null,
style: null, style: null,
class: String, class: String,

View File

@ -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>