Tree 组件
遇到一个需求 默认情况下需要懒加载、模糊搜索的情况下 需要关闭懒加载、如下通过refs 控制 属性状态
this.$refs.tree.store.lazy = true
this.$refs.tree.store.defaultExpandAll = false
this.$nextTick(() => { //划重点了 $nextTick 不懂得上网查一下
this.$refs["tree"].updateKeyChildren(id, res.data);
//id 是对应要添加到那个节点的id
//res.data 是添加的新数据
});