A radio button component. The component will automatically render as a Material Design radio button on Android devices.
Most attributes that can be used for a normal <input type="radio">
component can also be used on the <v-ons-radio>
component.
Radio button elements are created using the VOnsRadio
component. It works almost exactly the same as a normal <input type="radio">
tag.
An attribute input-id
is provided to set the ID of the inner native element. This is useful for HTMLLabel
elements: <label for="some-inner-input">
.
Every input is compatible with v-model
directive. Checkboxes can be bound to arrays or booleans normally. The only exception are modifiers (as of `vue@2.3). There is, however, a workaround for
lazy` modifier:
<v-ons-input v-model="something" model-event="change"></v-ons-input>
This will use change
event instead of input
when updating v-model
.
modifier
attribute<v-ons-select>
component is used to display a select box.<v-ons-checkbox>
component is used to display a checkbox.<v-ons-switch>
component is used to display a draggable toggle switch.<v-ons-input>
component is used to display a text input.<v-ons-search-input>
component is used to display a search input.<v-ons-range>
component is used to display a range slider.Name | Type | Description |
---|---|---|
input-id | String |
Specify the “id” attribute of the inner <input> component. This is useful when using <label for="..."> components.
Optional.
|
Name | Description |
---|---|
material | Displays a Material Design radio button. |
If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.
For bug reports and feature requests use our GitHub Issues page.