textarea
Textarea with description.
Textarea with description.
Загрузка превью…
src/textarea/c-textarea-4.vue
<script setup lang="ts">
import { Field, FieldDescription, FieldLabel } from "@/components/ui/field"
import { Textarea } from "@/components/ui/textarea"
</script>
<template>
<div class="mx-auto w-full max-w-xs">
<Field class="w-full">
<FieldLabel for="textarea-with-desc">Feedback</FieldLabel>
<Textarea id="textarea-with-desc" placeholder="Type your message here…" rows="6" />
<FieldDescription>
Type your message and press enter to send.
</FieldDescription>
</Field>
</div>
</template>