RadioGroup
- Файл: app/components/ui/radio-group/RadioGroup.vue
Быстрый старт
<script setup lang="ts">
import { RadioGroup } from 'components/ui/radio-group';
const radioOptions = [
{
value: "One",
label: "One"
},
{
value: "Two",
label: "Two"
},
]
</script>
<template>
<RadioGroup
:options="radioOptions"
/>
</template>
API
Props
| Prop | Type | По умолчанию |
|---|---|---|
id | string | '' |
name | string | '' |
required | string | '' |
disabled | string | '' |
options | RadioGroupOption | '' |
Models
| Prop | Type | По умолчанию |
|---|---|---|
model | string | undefined |