I was able to get it to work using uiRadio
and ui
props.
<URadioGroup
v-model="selected"
:options="methods"
:ui="{ fieldset: 'w-full flex flex-col'}"
:uiRadio="{
label: 'cursor-pointer py-3',
wrapper: 'pl-2 rounded-md items-center hover:bg-green-100',
inner: 'w-full',
form: 'cursor-pointer'
}"
>
<template #label="{ option }">
<p class="text-base w-100">
{{ option.label }}
</p>
</template>
</URadioGroup>