# Radio
A Radio is a way of presenting a user with multiple choices where only one selection is allowed.
# Simple Demo
- Use
v-model
to track your selected value. - Give each radio a unique
value
.
# Label
Use the label
prop or slot to add a label to your checkbox
# Disabled Radios
Use disabled
to disable a radio.
# Fieldset
Radios can be wrapped in a Fieldset to apply a Legend to the entire group, or to disable an entire group of Radios. See Fieldset for more information.