<script setup lang="ts">
|
import type { RadioGroupRootEmits, RadioGroupRootProps } from 'radix-vue';
|
|
import { computed } from 'vue';
|
|
import { cn } from '@vben-core/shared/utils';
|
|
import { RadioGroupRoot, useForwardPropsEmits } from 'radix-vue';
|
|
const props = defineProps<RadioGroupRootProps & { class?: any }>();
|
const emits = defineEmits<RadioGroupRootEmits>();
|
|
const delegatedProps = computed(() => {
|
const { class: _, ...delegated } = props;
|
|
return delegated;
|
});
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
</script>
|
|
<template>
|
<RadioGroupRoot :class="cn('grid gap-2', props.class)" v-bind="forwarded">
|
<slot></slot>
|
</RadioGroupRoot>
|
</template>
|