diff --git a/src/radio/radio.tsx b/src/radio/radio.tsx index 32ced7acc..a13dbced7 100644 --- a/src/radio/radio.tsx +++ b/src/radio/radio.tsx @@ -37,7 +37,7 @@ export default defineComponent({ }); const finalPlacement = computed(() => { if (props.placement == null && 'placement' in rootGroupProps) return rootGroupProps.placement; - return props.placement; + return props.placement || 'left'; }); const finalAllowUncheck = computed(() => Boolean(props.allowUncheck || rootGroupProps?.allowUncheck));