10.3k

Textarea

PreviousNext

Displays a form textarea or a component that looks like a textarea.

<script setup lang="ts">
import { Textarea } from '@/components/ui/textarea'
</script>

<template>
  <Textarea placeholder="Type your message here." />
</template>

Installation

pnpm dlx shadcn-vue@latest add textarea

Usage

<script setup lang="ts">
import { Textarea } from '@/components/ui/textarea'
</script>

<template>
  <Textarea placeholder="Type your message here." />
</template>