wallet-connect-web-examples/advanced/dapps/vue-dapp-auth/components/lib/Radio.vue
Glitch deb123f283
restructure (#345)
* restructure

* udpate readme links
2023-12-13 15:36:25 -03:00

51 lines
1.2 KiB
Vue

<template>
<radio-group v-model="model" class="tw-inline-flex tw-bg-dim-1 tw-p-3 tw-rounded tw-gap-2">
<radio-group-option
v-for="option, index of options"
:key="getKey(option, index)"
v-slot="{ checked }"
:value="getValue(option)"
>
<slot name="option" v-bind="{ option, checked }">
<div class="tw-radio-option tw-clickable" :class="{ checked }">
<radio-group-label as="div" class="tw-z-1">
<span class="tw-font-medium">
{{ option }}
</span>
</radio-group-label>
</div>
</slot>
</radio-group-option>
</radio-group>
</template>
<script setup lang="ts">
import {
RadioGroup,
RadioGroupLabel,
RadioGroupOption,
} from '@headlessui/vue'
type Value = any
type Option = any
interface Props {
modelValue: Value
options?: Option[]
// How to render list of the options
getKey?: (_option: Option, _index: number) => string | number
// Getter to a value to use as a model
getValue?: (_option: Option) => Value
}
const props = withDefaults(defineProps<Props>(), {
options: () => [],
getKey: (_option: Option, index: number) => index,
getValue: (option: Option) => option,
})
const model = useVModel(props)
</script>