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