@@ -445,7 +445,7 @@ const Tree = {
445
445
// We need to get the latest state of loading/loaded keys
446
446
this . setState ( ( { _loadedKeys : loadedKeys = [ ] , _loadingKeys : loadingKeys = [ ] } ) => {
447
447
const { loadData } = this . $props
448
- const { eventKey } = getOptionProps ( ' treeNode' )
448
+ const { eventKey } = getOptionProps ( treeNode )
449
449
450
450
if ( ! loadData || loadedKeys . indexOf ( eventKey ) !== - 1 || loadingKeys . indexOf ( eventKey ) !== - 1 ) {
451
451
return { }
@@ -471,7 +471,7 @@ const Tree = {
471
471
} )
472
472
473
473
return {
474
- loadingKeys : arrAdd ( loadingKeys , eventKey ) ,
474
+ _loadingKeys : arrAdd ( loadingKeys , eventKey ) ,
475
475
}
476
476
} )
477
477
} )
@@ -561,7 +561,8 @@ const Tree = {
561
561
_expandedKeys : expandedKeys = [ ] ,
562
562
_selectedKeys : selectedKeys = [ ] ,
563
563
_halfCheckedKeys : halfCheckedKeys = [ ] ,
564
- _loadedKeys : loadedKeys = [ ] , _loadingKeys : loadingKeys = [ ] ,
564
+ _loadedKeys : loadedKeys = [ ] ,
565
+ _loadingKeys : loadingKeys = [ ] ,
565
566
_dragOverNodeKey : dragOverNodeKey ,
566
567
_dropPosition : dropPosition ,
567
568
} = this . $data
0 commit comments