🐞 fix(Tree): 调整checkedKeys属性的类型 (#2562)

This commit is contained in:
Houtaroy 2023-02-22 18:09:30 +08:00 committed by GitHub
parent a1b9bbc2ce
commit d88915bac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export const treeProps = buildProps({
},
checkedKeys: {
type: Array as PropType<CheckKeys>,
type: [Array, Object] as PropType<CheckKeys>,
default: () => [],
},