Radio buttons allow the user to select one option from a set. Use radio buttons for exclusive selection if you think that the user needs to see all available options side-by-side. Vue material radio can work with multiple v-model
types: String
, Number
and Boolean
.
The following options can be applied to all radios:
<input type="radio">
attributes, such as name and required, can be used on md-radio
.Name | Description | Default |
---|---|---|
value String|Number|Boolean|Object | The value of the radio | on |
v-model String|Number|Boolean|Object | The model variable to bind the selection value. If no value is assigned, then it will use the same behaviour of a regular input[type="radio"]. | null |
id String | The radio unique id. | a random string |