DemoTextareaValidation.vue 280 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <script setup> const textareaValue = ref('Hello!') const rules = [v => v.length <= 25 || 'Max 25 characters'] </script> <template> <VTextarea v-model="textareaValue" label="Validation" :rules="rules" rows="2" placeholder="Placeholder Text" /> </template>