<script setup lang="ts">
import { ARadioGroupIndicator, ARadioGroupItem, ARadioGroupRoot } from 'akar';
import { ref } from 'vue';
const radioStateSingle = ref('1');
const items = [
{ value: '1', label: 'Option 1' },
{ value: '2', label: 'Option 2' },
{ value: '3', label: 'Option 3' },
];
</script>
<template>
<ARadioGroupRoot
v-model="radioStateSingle"
class="flex flex-col gap-x-2 gap-y-1"
aria-label="View density"
>
<div
v-for="item in items"
:key="item.value"
class="text-sm flex flex-row items-start"
>
<div class="flex h-5 items-center">
<ARadioGroupItem
:id="item.value"
class="rounded-full size-4 ring ring-ring-accented ring-inset overflow-hidden focus-visible:(outline-2 outline-primary outline-offset-2)"
:value="item.value"
>
<ARadioGroupIndicator
class="bg-primary flex size-full items-center justify-center after:(rounded-full bg-background size-1.5 content-empty)"
/>
</ARadioGroupItem>
</div>
<div class="ms-2 w-full">
<label
:for="item.value"
class="color-text font-medium block"
>
{{ item.label }}
</label>
</div>
</div>
</ARadioGroupRoot>
</template>
Import all parts and piece them together.
<script setup>
import { ARadioGroupIndicator, ARadioGroupItem, ARadioGroupRoot } from 'akar';
</script>
<template>
<ARadioGroupRoot>
<ARadioGroupItem>
<ARadioGroupIndicator />
</ARadioGroupItem>
</ARadioGroupRoot>
</template>
Contains all the parts of a radio group.
| Prop | Default | Type |
|---|---|---|
as | 'div' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. | |
defaultValue | AcceptableValueThe value of the radio item that should be checked when initially rendered. Use when you do not need to control the state of the radio items. | |
dir | 'ltr' | 'rtl'The reading direction of the combobox when applicable. | |
disabled | false | booleanWhen |
loop | true | booleanWhen |
modelValue | AcceptableValue | |
name | stringThe name of the field. Submitted with its owning form as part of a name/value pair. | |
orientation | 'horizontal' | 'vertical'The orientation of the component. | |
required | false | booleanWhen |
| Event | Type |
|---|---|
update:modelValue | [payload: string]Event handler called when the radio group value changes |
| Slot | Type |
|---|---|
modelValue | null | string | number | bigint | Record<string, any>The controlled value of the radio item to check. Can be binded as |
| Attribute | Value |
|---|---|
[data-disabled] | Present when disabled |
An item in the group that can be checked. An input will also render when used within a form to ensure events propagate correctly.
| Prop | Default | Type |
|---|---|---|
as | 'button' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. | |
disabled | false | booleanWhen |
id | string | |
name | stringThe name of the field. Submitted with its owning form as part of a name/value pair. | |
required | booleanWhen | |
value | AcceptableValueThe value given as data when submitted with a |
| Event | Type |
|---|---|
select | [event: SelectEvent]Event handler called when the user selects a link (via mouse or keyboard). |
| Slot | Type |
|---|---|
checked | booleanCurrent checked state |
required | booleanWhen |
disabled | booleanWhen |
| Attribute | Value |
|---|---|
[data-state] | 'checked' | 'unchecked' |
[data-disabled] | Present when disabled |
Renders when the radio item is in a checked state. You can style this element directly, or you can use it as a wrapper to put an icon into, or both.
| Prop | Default | Type |
|---|---|---|
as | 'span' | APrimitiveAsTag | ComponentThe element or component this component should render as. Can be overwritten by |
asChild | booleanChange the default rendered element for the one passed as a child, merging their props and behavior. Read our Composition guide for more details. | |
forceMount | booleanUsed to force mounting when more control is needed. Useful when controlling animation with Vue animation libraries. |
| Attribute | Value |
|---|---|
[data-state] | 'checked' | 'unchecked' |
[data-disabled] | Present when disabled |
Adheres to the Radio Group WAI-ARIA design pattern and uses roving tabindex to manage focus movement among radio items.
| Key | Description |
|---|---|
Tab | Moves focus to either the checked radio item or the first radio item in the group. |
Space | When focus is on an unchecked radio item, checks it. |
ArrowDown | Moves focus and checks the next radio item in the group. |
ArrowRight | Moves focus and checks the next radio item in the group. |
ArrowUp | Moves focus to the previous radio item in the group. |
ArrowLeft | Moves focus to the previous radio item in the group. |