RadioGroup
A set of checkable buttons where no more than one can be checked at a time.
<template>
<RadioGroup :items="[{ value: 'a', label: 'Default', description: 'Select this option' }]" model-value="a" />
</template>Props
| Name | Type | Default |
|---|---|---|
| items | { value: string; label?: string; description?: string; disabled?: boolean }[] | — |
| modelValue | string | — |