无线电组

一组可勾选的按钮,称为单选按钮,一次只能勾选一个按钮。

安装

bash
npx shadcn-vue@latest add radio-group

使用

vue
<script setup lang="ts">
import { Label } from '@/components/ui/label'
import { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group'
</script>

<template>
  <RadioGroup default-value="option-one">
    <div class="flex items-center space-x-2">
      <RadioGroupItem id="option-one" value="option-one" />
      <Label for="option-one">Option One</Label>
    </div>
    <div class="flex items-center space-x-2">
      <RadioGroupItem id="option-two" value="option-two" />
      <Label for="option-two">Option Two</Label>
    </div>
  </RadioGroup>
</template>

示例

表单

请首先阅读 vee-validate 部分以了解 复选框和单选按钮输入

在 GitHub 上编辑此页面