Skip to content

Commit

Permalink
fix: wrong type validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernest committed May 2, 2021
1 parent 386a643 commit a11f33e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default {
comboboxUid: {
required: true,
type: String,
type: Number,
},
},
emits: ['click-item', 'mousemove'],
Expand Down
2 changes: 1 addition & 1 deletion src/components/input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default {
comboboxUid: {
required: true,
type: String,
type: Number,
},
},
emits: ['update:modelValue', 'input', 'change', 'focus', 'blur', 'escape'],
Expand Down

0 comments on commit a11f33e

Please sign in to comment.