Skip to content

Commit

Permalink
enhancement: add minlength attribute to textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Bijaoui committed Sep 1, 2016
1 parent f5af70c commit a7e39d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fields/fieldTextArea.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template lang="jade">
textarea.form-control(v-model="value", :autocomplete="schema.autocomplete", :disabled="disabled", :maxlength="schema.max", :placeholder="schema.placeholder", :readonly="schema.readonly", :rows="schema.rows || 2")
textarea.form-control(v-model="value", :autocomplete="schema.autocomplete", :disabled="disabled", :maxlength="schema.max", :minlength="schema.min", :placeholder="schema.placeholder", :readonly="schema.readonly", :rows="schema.rows || 2")
</template>

<script>
Expand Down

0 comments on commit a7e39d9

Please sign in to comment.