---
map:
    path: /components/radio
---

# Radio⭕

Let users make choices through radio box components

## Code demonstration

```js
import { URadio } from 'ungeui';
```

### Basic usage🚀

<demo src="./demo/en/checked.vue"
  language="vue"
  title="🚀basic usage"
  desc="The checked property determines whether the button is selected">
</demo>

### Disable🚫

<demo src="./demo/en/disabled.vue"
  language="vue"
  title="🚫basic usage"
  desc="Disabled disables the radio box and the color turns gray">
</demo>

### Radio group🚥

<demo src="./demo/en/group.vue"
  language="vue"
  title="🚥basic usage"
  desc="option group is more convenient to use">
</demo>

### Radio button⏺

<demo src="./demo/en/button.vue"
  language="vue"
  title="⏺basic usage"
  desc="sometimes it's more elegant to use buttons">
</demo>

## Props

| Parameter | description | type | default value|
| :------: | :------: | :-------: | :-----: |
| checked  | is check  | `boolean` | `false` |
| disabled | is disabled | `boolean` | `false` |
