feat: vben checkbox support indeterminate state and transition animation (#5662)

This commit is contained in:
Netfan
2025-03-06 16:11:02 +08:00
committed by GitHub
parent 34789645f7
commit 31a6ab59fb
2 changed files with 7 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ import { useForwardPropsEmits } from 'radix-vue';
import { Checkbox } from '../../ui/checkbox';
const props = defineProps<CheckboxRootProps>();
const props = defineProps<CheckboxRootProps & { indeterminate?: boolean }>();
const emits = defineEmits<CheckboxRootEmits>();