vue 使用element el-tree 树形控件设置默认节点高亮

 

设置highlight-current为true,设置ref="treeList"

     created(){
         
            this.$nextTick(function(){
                this.$refs.treeList.setCurrentKey(0);  //"treeList"是你自己在树形控件上设置的 ref="treeList" 的名称
            })
           
        },

vue created方法中调用setCurrentKey方法设置根节点高亮

你可能感兴趣的:(js,html)