DemoTextareaAutoGrow.vue
300 Bytes
<script setup>
const textareaValue = ref('The Woodman set to work at once, and so sharp was his axe that the tree was soon chopped nearly through.')
</script>
<template>
<VTextarea
v-model="textareaValue"
label="Auto Grow"
placeholder="Placeholder Text"
auto-grow
/>
</template>