106k
New

标签

渲染一个与控件关联的无障碍标签。

import { Checkbox } from "@/components/ui/checkbox"
import { Label } from "@/components/ui/label"

安装

pnpm dlx shadcn@latest add label

使用

import { Label } from "@/components/ui/label"
<Label htmlFor="email">您的电子邮件地址</Label>

Field 中的标签

对于表单字段,请使用包含内置 FieldLabelFieldDescriptionFieldError 组件的 Field 组件。

<Field>
  <FieldLabel htmlFor="email">您的电子邮件地址</FieldLabel>
  <Input id="email" />
</Field>
Payment Method

All transactions are secure and encrypted

Enter your 16-digit card number

Billing Address

The billing address associated with your payment method

import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import {

API 参考

更多信息请参见 Base UI Label 文档。