首页 前端知识 vue3中el-tree设置默认选中节点和展开节点

vue3中el-tree设置默认选中节点和展开节点

2024-01-26 10:01:32 前端知识 前端哥 79 172 我要收藏

        1.el-tree设置 node-key,current-node-key,default-expanded-keys,highlight-current:

<el-tree 
ref="taskTree" 
:data="ptreeData"
node-key="key"
:current-node-key="currentKey" 
:default-expanded-keys="defaultExpanded" 
highlight-current>
</el-tree>

2.赋值数据

 nextTick(() => {
            currentKey.value=firstNode.key;
            taskTree.value.setCurrentKey(firstNode.key);
            defaultExpanded.value=nodeIds;
 })

注意:使用了nextTick。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/450.html
标签
vue.js
评论
发布的文章

CSS3新增样式

2024-02-05 11:02:24

jQuery的介绍

2024-02-05 11:02:21

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!