Hacktron Design System

RadioGroup

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

Select this option

Select this option

Select this option

<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 }[]
modelValuestring

Usage