mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
Tree: fix can not update children in some condition. (#1524)
This commit is contained in:
parent
34756d17ca
commit
5285856100
@ -163,17 +163,17 @@
|
||||
}
|
||||
|
||||
const tree = this.tree;
|
||||
const props = this.props || {};
|
||||
if (!tree) {
|
||||
console.warn('Can not find node\'s tree.');
|
||||
}
|
||||
|
||||
const props = tree.props || {};
|
||||
const childrenKey = props['children'] || 'children';
|
||||
|
||||
this.$watch(`node.data.${childrenKey}`, () => {
|
||||
this.node.updateChildren();
|
||||
});
|
||||
|
||||
if (!tree) {
|
||||
console.warn('Can not find node\'s tree.');
|
||||
}
|
||||
|
||||
this.showCheckbox = tree.showCheckbox;
|
||||
|
||||
if (this.node.expanded) {
|
||||
|
Loading…
Reference in New Issue
Block a user