Merge pull request #4226 from qburst/4225-fix-incorrect-prop-dropdown

Fix: fix incorrect prop types in dropdown
pull/4203/head
Tuğçe Küçükoğlu 2023-08-02 11:50:38 +03:00 committed by GitHub
commit e7f11e883e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -153,11 +153,11 @@ export default {
props: {
modelValue: null,
options: Array,
optionLabel: String || Function,
optionValue: String || Function,
optionDisabled: String || Function,
optionGroupLabel: String || Function,
optionGroupChildren: String || Function,
optionLabel: [String, Function],
optionValue: [String, Function],
optionDisabled: [String, Function],
optionGroupLabel: [String, Function],
optionGroupChildren: [String, Function],
scrollHeight: {
type: String,
default: '200px'