可以结合 current-node-key
属性和this.$refs['treeRef'].setCurrentKey()
方法及this.$nexTick()
同时使用
代码如下
<el-tree
ref="treeRef"
node-key="id"
:data="list"
:current-node-key="currentKey"
><el-tree>
js:
created(){
this.list=[数据]
this.$nextTick(()=>{
this.currentKey=this.list[0].id
this.$refs['treeRef'].setCurrentKey(this.currentKey)
})
}