Commit 52858561 authored by FuryBean's avatar FuryBean Committed by cinwell.li

Tree: fix can not update children in some condition. (#1524)

parent 34756d17
...@@ -163,17 +163,17 @@ ...@@ -163,17 +163,17 @@
} }
const tree = this.tree; 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'; const childrenKey = props['children'] || 'children';
this.$watch(`node.data.${childrenKey}`, () => { this.$watch(`node.data.${childrenKey}`, () => {
this.node.updateChildren(); this.node.updateChildren();
}); });
if (!tree) {
console.warn('Can not find node\'s tree.');
}
this.showCheckbox = tree.showCheckbox; this.showCheckbox = tree.showCheckbox;
if (this.node.expanded) { if (this.node.expanded) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment