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

PropTypeПо умолчанию
idstring''
namestring''
requiredstring''
disabledstring''
optionsRadioGroupOption''

Models

PropTypeПо умолчанию
modelstringundefined