Merge pull request #5 from navedqb/4225-fix-incorrect-prop-dropdown
Fixes incorrect prop typespull/4226/head
commit
9001e4f680
|
@ -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