🐛(checkbox): 修复 checkbox 组件 isIndeterminate 属性类型非必填, 与文档类型提供错误
This commit is contained in:
parent
4636c7c38d
commit
2a7b3f1ae4
@ -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;
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user