Merge pull request #4226 from qburst/4225-fix-incorrect-prop-dropdown
Fix: fix incorrect prop types in dropdownpull/4203/head
commit
e7f11e883e
|
@ -153,11 +153,11 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
modelValue: null,
|
modelValue: null,
|
||||||
options: Array,
|
options: Array,
|
||||||
optionLabel: String || Function,
|
optionLabel: [String, Function],
|
||||||
optionValue: String || Function,
|
optionValue: [String, Function],
|
||||||
optionDisabled: String || Function,
|
optionDisabled: [String, Function],
|
||||||
optionGroupLabel: String || Function,
|
optionGroupLabel: [String, Function],
|
||||||
optionGroupChildren: String || Function,
|
optionGroupChildren: [String, Function],
|
||||||
scrollHeight: {
|
scrollHeight: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '200px'
|
default: '200px'
|
||||||
|
|
Loading…
Reference in New Issue