DemoTextareaAutoGrow.vue
310 Bytes
<script setup lang="ts">
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>