🐛(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;
}

View File

@ -188,7 +188,7 @@ export default {
::: demo 在实现全选效果时,你可能会用到 indeterminate 属性。
<template>
<lay-checkbox name="like" skin="primary" label="1" isIndeterminate="true" v-model="checked8">半选</lay-checkbox>
<lay-checkbox name="like" skin="primary" label="1" :isIndeterminate="true" v-model="checked8">半选</lay-checkbox>
</template>
<script>