# Form Radio Inputs > For cross browser consistency, `` and `` uses Bootstrap's custom > radio input to replace the browser default radio input. It is built on top of semantic and > accessible markup, so it is a solid replacement for the default radio input. ## Individual radios ```html ``` ## Grouped radios The individual radio inputs in `` can be specified via the `options` prop, or via manual placement of the `` sub component. When using manually placed `` components within a ``, they will inherit most props and the v-model from the ``. ```html ``` Feel free to mix and match `options` prop and `` in ``. Manually placed `` inputs will appear _below_ any radio inputs generated by the `options` prop. To have them appear _above_ the inputs generated by `options`, place them in the named slot `first`. ```html ``` ## Radio group options array `options` can be an array of strings or objects. Available fields: - **`value`** The selected value which will be set on `v-model` - **`disabled`** Disables item for selection - **`text`** Display text, or **`html`** Display basic inline html `value` can be a string, number, or simple object. Avoid using complex types in values. If both `html` and `text` are provided, `html` will take precedence. Only basic/native HTML is supported in the `html` field (components will not work). Note that not all browsers will render inline html (i.e. ``, ``, etc.) inside `