DemoTextareaCounter.vue 195 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 <script setup> const textareaValue = ref('Hello!') </script> <template> <VTextarea v-model="textareaValue" counter label="Text" placeholder="Placeholder Text" /> </template>