Skip to content

Radio List

A set of checkable buttons where no more than one of the buttons can be checked at a time.

When to Use

  • To present each item in a list of options where users must make a single selection.

Usage

ts
import { RadioList } from '@youcan/alto';
import type { RadioListOption } from '@youcan/alto/types';
vue
<RadioList v-model="selectedOption" :options="options" />

API Reference