Textarea
Displays a form textarea or a component that looks like a textarea.
Installation
npx shadcn-vue@latest add https://vuedocs.canceydejean.dev/r/textarea.jsonUsage
Use the native placeholder, disabled, and v-model props. Pair with Label for accessible
forms.
<script setup lang="ts">
import { Textarea } from "@/components/ui/textarea";
</script>
<template>
<Textarea placeholder="Type your message here." />
</template>