Get started with the radio component to let the user choose a single option from multiple options in the form of a circle based on multiple styles and colors
:::tip Original reference: https://flowbite.com/docs/forms/range/ :::
```vue <script setup> import { ref } from 'vue' import { FwbRadio } from 'flowbite-vue' const picked = ref() </script>
## Disabled Radio
<fwb-radio-example-disabled />
```vue
<template>
<fwb-radio
v-model="picked"
disabled
label="Disabled radio"
name="radio-disabled"
value="one"
/>
<fwb-radio
v-model="picked"
disabled
label="Disabled checked"
name="radio-disabled"
value="two"
/>
</template>
<script setup>
import { ref } from 'vue'
import { FwbRadio } from 'flowbite-vue'
const picked = ref('two')
</script>
## Horizontal list group
<fwb-radio-example-list-horizontal />
```vue
<template>
<fwb-p class="mb-2">
Technology {{ picked }}
</fwb-p>
<ul class="items-center w-full text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg sm:flex dark:bg-gray-700 dark:border-gray-600 dark:text-white">
<li class="w-full !m-0 pl-3 flex border-gray-200 rounded-t-lg dark:border-gray-600">
<fwb-radio
v-model="picked"
label="Svelte"
name="radio-horizontal"
value="Svelte"
/>
</li>
<li class="w-full !m-0 pl-3 flex border-gray-200 rounded-t-lg dark:border-gray-600">
<fwb-radio
v-model="picked"
label="Vue JS"
name="radio-horizontal"
value="Vue JS"
/>
</li>
<li class="w-full !m-0 pl-3 flex border-gray-200 rounded-t-lg dark:border-gray-600">
<fwb-radio
v-model="picked"
label="React"
name="radio-horizontal"
value="React"
/>
</li>
<li class="w-full !m-0 pl-3 flex border-gray-200 rounded-t-lg dark:border-gray-600">
<fwb-radio
v-model="picked"
label="Angular"
name="radio-horizontal"
value="Angular"
/>
</li>
</ul>
</template>
<script setup>
import { ref } from 'vue'
import { FwbP, FwbRadio } from 'flowbite-vue'
const picked = ref('svelte')
</script>
## Radio with a link
<fwb-radio-example-link />
```vue
<template>
<fwb-radio v-model="picked" name="with-link" value="first">
I agree with the
<fwb-a class="ml-1" href="#">
terms and conditions
</fwb-a>.
</fwb-radio>
</template>
<script setup>
import { ref } from 'vue'
import { FwbA, FwbRadio } from 'flowbite-vue'
const picked = ref()
</script>