🐛(checkbox): 修复 checkbox 组件 isIndeterminate 属性类型非必填, 与文档类型提供错误

This commit is contained in:
就眠儀式
2022-06-25 21:45:11 +08:00
parent 4636c7c38d
commit 2a7b3f1ae4
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ export interface LayCheckboxProps {
name?: string;
skin?: string;
label: string | object;
isIndeterminate: boolean;
isIndeterminate?: boolean;
modelValue?: boolean | Array<string | object>;
disabled?: boolean;
}