Docs
Checkbox Group

Checkbox Group

A visual group of Checkbox controls, allowing for the selection of multiple options within a set.

Helper text

Usage

vue
<script setup lang="ts">
import { CheckboxGroup } from "wedges-vue";
</script>

<template>
  <CheckboxGroup id="terms" />
</template>

API Reference

CheckboxGroup

Alternatively, CheckboxGroupRoot can be used in place of this component.CheckboxGroup includes these props:

PropTypeDefault
as
AsTag | Component
'div'
asChild
boolean
false
description
string
disabled
boolean
false
for
string
helperText
string
label
string
orientation
'horizontal' | 'vertical'
required
boolean
false
tooltip
string
EmitDescription
update:checked

CheckboxGroupItem

Shares all the properties of the Checkbox component. Details can be found here.

Examples

Helper text
Helper text
Edit this page on GitHub