Docs
单选按钮组

单选按钮组

一组可复选按钮(称为单选按钮),一次只能复选一个按钮。

安装

¥Installation

pnpm dlx shadcn@latest add radio-group

用法

¥Usage

import { Label } from "@/components/ui/label"
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"
<RadioGroup defaultValue="option-one">
  <div className="flex items-center space-x-2">
    <RadioGroupItem value="option-one" id="option-one" />
    <Label htmlFor="option-one">Option One</Label>
  </div>
  <div className="flex items-center space-x-2">
    <RadioGroupItem value="option-two" id="option-two" />
    <Label htmlFor="option-two">Option Two</Label>
  </div>
</RadioGroup>

示例

¥Examples

表单

¥Form