fix(form-field): 移除overflow-hidden以修复radio波纹效果显示问题

This commit is contained in:
dap 2026-01-14 16:37:14 +08:00
parent 76d698f670
commit 7c8e962a01

View File

@ -324,7 +324,8 @@ onUnmounted(() => {
<VbenRenderContent :content="label" /> <VbenRenderContent :content="label" />
</template> </template>
</FormLabel> </FormLabel>
<div class="flex-auto overflow-hidden p-[1px]"> <!-- overflow-hidden导致radio的波纹效果无法显示 -->
<div class="flex-auto p-[1px]">
<div :class="cn('relative flex w-full items-center', wrapperClass)"> <div :class="cn('relative flex w-full items-center', wrapperClass)">
<FormControl :class="cn(controlClass)"> <FormControl :class="cn(controlClass)">
<slot <slot