elementui的tree默认高亮显示无效的问题

elementui的tree默认高亮显示无效的问题

必须要的属性:

1, 设置node-key 属性

2, 使用nextTick

3, 设置 highlight-current 属性

4, this.$refs.xxx.setCurrentKey('id名称')

<template>
  <div class="onlineText">
    <el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick" default-expand-all 
    ref="treeList" node-key="id" highlight-current></el-tree>
  </div>
</template>

<script>
export default {
  name: "onlineText",
  data(){
    return{
      data: [{
          id: 1,
          label: '一级 1',
          children: [{
            id: 4,
            label: '二级 1-1',
            children: [{
              id: 9,
              label: '三级 1-1-1'
            }, {
              id: 10,
              label: '三级 1-1-2'
            }]
          }]
        }, {
          id: 2,
          label: '一级 2',
          children: [{
            id: 5,
            label: '二级 2-1'
          }, {
            id: 6,
            label: '二级 2-2'
          }]
        }, {
          id: 3,
          label: '一级 3',
          children: [{
            id: 7,
            label: '二级 3-1'
          }, {
            id: 8,
            label: '二级 3-2'
          }]
        }],
        defaultProps: {
          children: 'children',
          label: 'label'
        }
    }
  },
  methods:{
    handleNodeClick(data) {
        console.log(data);
      }
  },
  mounted(){
    this.$nextTick(()=>{
      this.$refs.treeList.setCurrentKey('5')
    })
  }

};
</script>

<style lang="less">
.onlineText{
  
}
</style> 

这种就是设置默认值,也就是说不管你选择了哪个,刷新以后还是默认值。如果你想刷新以后保持你上一个点击的,就需要用缓存

<template>
  <div class="onlineText">
    <el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick" default-expand-all 
    ref="treeList" node-key="id" highlight-current></el-tree>
  </div>
</template>

<script>
export default {
  name: "onlineText",
  data(){
    return{
      data: [{
          id: 1,
          label: '一级 1',
          children: [{
            id: 4,
            label: '二级 1-1',
            children: [{
              id: 9,
              label: '三级 1-1-1'
            }, {
              id: 10,
              label: '三级 1-1-2'
            }]
          }]
        }, {
          id: 2,
          label: '一级 2',
          children: [{
            id: 5,
            label: '二级 2-1'
          }, {
            id: 6,
            label: '二级 2-2'
          }]
        }, {
          id: 3,
          label: '一级 3',
          children: [{
            id: 7,
            label: '二级 3-1'
          }, {
            id: 8,
            label: '二级 3-2'
          }]
        }],
        defaultProps: {
          children: 'children',
          label: 'label'
        },
        defaultId:'5'
    }
  },
  methods:{
    handleNodeClick(data) {
        console.log(data);
        sessionStorage.setItem("defaultId",data.id)

      }
  },
  mounted(){
    this.$nextTick(()=>{
      if(sessionStorage.getItem("defaultId")){
        this.$refs.treeList.setCurrentKey(sessionStorage.getItem("defaultId"))
      }else{
        this.$refs.treeList.setCurrentKey(this.defaultId)
      }
    })
  }

};
</script>

<style lang="less">
.onlineText{
  
}
</style> 
相关推荐
sinat_38424109几秒前
在有网络连接的机器上打包 electron 及其依赖项,在没有网络连接的机器上安装这些离线包
javascript·arcgis·electron
baiduopenmap12 分钟前
百度世界2024精选公开课:基于地图智能体的导航出行AI应用创新实践
前端·人工智能·百度地图
loooseFish20 分钟前
小程序webview我爱死你了 小程序webview和H5通讯
前端
小牛itbull24 分钟前
ReactPress vs VuePress vs WordPress
开发语言·javascript·reactpress
请叫我欧皇i32 分钟前
html本地离线引入vant和vue2(详细步骤)
开发语言·前端·javascript
533_35 分钟前
[vue] 深拷贝 lodash cloneDeep
前端·javascript·vue.js
guokanglun41 分钟前
空间数据存储格式GeoJSON
前端
GIS瞧葩菜44 分钟前
局部修改3dtiles子模型的位置。
开发语言·javascript·ecmascript
zhang-zan1 小时前
nodejs操作selenium-webdriver
前端·javascript·selenium
ZBY520311 小时前
【Vue】 npm install amap-js-api-loader指南
javascript·vue.js·npm