Skip to content

Commit

Permalink
fix(QInput): declare FileList as possible modelValue type (QInput can…
Browse files Browse the repository at this point in the history
… be used with type="file")
  • Loading branch information
rstoenescu committed May 8, 2024
1 parent 23d6dcf commit 41bc5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/input/QInput.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"props": {
"model-value": {
"extends": "model-value",
"type": [ "String", "Number", "null", "undefined" ],
"type": [ "String", "Number", "FileList", "null", "undefined" ],
"desc": "Model of the component; Either use this property (along with a listener for 'update:modelValue' event) OR use v-model directive",
"examples": [ "# v-model=\"myText\"" ]
},
Expand Down

0 comments on commit 41bc5e7

Please sign in to comment.