mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Merge pull request #4226 from qburst/4225-fix-incorrect-prop-dropdown
Fix: fix incorrect prop types in dropdown
This commit is contained in:
commit
e7f11e883e
1 changed files with 5 additions and 5 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue