Skip to content

Commit

Permalink
feat: separate inputAttributes and textareaAttributes
Browse files Browse the repository at this point in the history
  • Loading branch information
OrbisK committed Jul 18, 2022
1 parent c882613 commit c6c84a8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/BaseInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ const props = defineProps({
default: undefined,
},
inputAttributes: {
type: Object as PropType<InputHTMLAttributes | TextareaHTMLAttributes>,
type: Object as PropType<InputHTMLAttributes>,
default: undefined,
},
textareaAttributes: {
type: Object as PropType<TextareaHTMLAttributes>,
default: undefined,
},
classes: {
Expand Down

0 comments on commit c6c84a8

Please sign in to comment.