api-client/packages/hoppscotch-ui/src/components/smart/RadioGroup.vue
Nivedin 2528bbb92f
feat: shared request (#3486)
Co-authored-by: jamesgeorge007 <jamesgeorge998001@gmail.com>
2023-12-04 22:51:18 +05:30

28 lines
646 B
Vue

<template>
<div class="flex flex-col">
<HoppSmartRadio
v-for="(radio, index) in radios"
:key="`radio-${index}`"
:value="radio.value"
:label="radio.label"
:selected="modelValue === radio.value"
@change="emit('update:modelValue', radio.value)"
/>
</div>
</template>
<script setup lang="ts">
import { HoppSmartRadio } from "."
const emit = defineEmits<{
(e: "update:modelValue", value: string): void
}>()
defineProps<{
radios: Array<{
value: string // The key of the radio option
label: string
}>
modelValue: string // Should be a radio key given in the radios array
}>()
</script>