🐞 fix(Tree): 调整checkedKeys属性的类型 (#2562)
This commit is contained in:
parent
a1b9bbc2ce
commit
d88915bac3
|
|
@ -100,7 +100,7 @@ export const treeProps = buildProps({
|
||||||
},
|
},
|
||||||
|
|
||||||
checkedKeys: {
|
checkedKeys: {
|
||||||
type: Array as PropType<CheckKeys>,
|
type: [Array, Object] as PropType<CheckKeys>,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue