9.7k

文本域

上一页下一页

用于显示表单文本域或看起来像文本域的组件。

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

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

安装

pnpm dlx shadcn-vue@latest add textarea

使用方法

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

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