Skip to content

Commit

Permalink
Merge pull request #1746 from Shamus03/patch-1
Browse files Browse the repository at this point in the history
Add `required` prop
  • Loading branch information
mattelen authored Jul 11, 2024
2 parents e7daa16 + fdc4356 commit 47f3685
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Multiselect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
autocomplete="off"
:spellcheck="false"
:placeholder="placeholder"
:required="required"
:style="inputStyle"
:value="search"
:disabled="disabled"
Expand Down Expand Up @@ -312,6 +313,10 @@ export default {
tabindex: {
type: Number,
default: 0
},
required: {
type: Boolean,
default: false
}
},
computed: {
Expand Down

0 comments on commit 47f3685

Please sign in to comment.