美文网首页
记录一些Element UI 常用的一些组件 小妙招

记录一些Element UI 常用的一些组件 小妙招

作者: Talentisan | 来源:发表于2022-03-22 16:00 被阅读0次

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 是添加的新数据
 });

相关文章

网友评论

      本文标题:记录一些Element UI 常用的一些组件 小妙招

      本文链接:https://www.haomeiwen.com/subject/qavfjrtx.html