Skip to content

Commit

Permalink
feat(v-textarea): allow string to textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Sep 29, 2021
1 parent da6476f commit 8c93136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/VTextarea/VTextarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ const props = defineProps({
default: '',
},
cols: {
type: Number,
type: [String, Number],
default: undefined,
},
rows: {
type: Number,
type: [String, Number],
default: undefined,
},
});
Expand Down

0 comments on commit 8c93136

Please sign in to comment.