Skip to content

ACV Radio

Radio button allows to select one option from a set. Used in cases where a list of two or more parameters is mutually exclusive, that is, the user can select only one parameter. Radio buttons should have one selected option by default.

Basic usage

Use component with component to display the label. Radio button value binds with v-model and value as the selected value.

Source code
vue
<script setup>
  import { ref } from 'vue';
  import AcvRadio from '@/components/radio/radio.vue';
  import AcvFormItem from '@/components/form-item/formItem.vue';

  const picked = ref('apple');
</script>

<template>
  <AcvFormItem
    v-model="picked"
    :control="AcvRadio"
    label="🍎 Apple"
    value="apple"
  />
  <AcvFormItem
    v-model="picked"
    :control="AcvRadio"
    label="🍌 Banana"
    value="banana"
  />
  <AcvFormItem
    v-model="picked"
    :control="AcvRadio"
    label="🍇 Grape"
    value="grape"
  />
  <AcvFormItem
    v-model="picked"
    :control="AcvRadio"
    label="🍊 Orange"
    value="orange"
    disabled
  />
</template>

Without labels

Radio button can be used alone without the component.

or

Disabled

States

Accessibility

Provided AcvRadio component must adapt to the list of WAI-ARIA accessibility patterns.

Keyboard interaction

  • Tab key: Moves focus to the next focusable element.
  • Shift + Tab keys: Moves focus to the previous focusable element.
  • Space or Enter key: Selects the focused radio button.

WAIA-ARIA roles, states, and properties

  • role="radiogroup": Indicates the radio group role.
  • role="radio": Indicates the radio button role.
  • aria-checked: Indicates the state of the radio button.
  • aria-disabled: Indicates the disabled state of the radio button.
  • aria-labelledby: Identifies the element that provides a label for the radio button.
  • aria-describedby: Identifies the element that provides a description for the radio button.
  • aria-required: Indicates that the radio button is required for form submission.
  • aria-invalid: Indicates that the radio button has an error.

Props

Prop nameDescriptionTypeValuesDefault
modelValueBinding value of the Radiostring | number | boolean-
sizeRadio sizeComponentSize-medium
colorCustom color of the RadioColorProp-primary
labelLabel textstring-
disabledDisable radioboolean-
invalidWhether the Radio is invalidboolean-

Events

Event namePropertiesDescription
update:modelValueeventName string - The name of the event
value string - The updated value
Triggered when binding value changes

Slots

NameDescriptionBindings
defaultThe default slot content

MIT Licensed