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> 
相关推荐
三巧7 分钟前
纯CSS吃豆人(JS仅控制进度)
javascript·css·html
SummerGao.8 分钟前
【解决】layui layer的提示框,弹出框一闪而过的问题
前端·layui
软件技术NINI24 分钟前
html css js网页制作成品——HTML+CSS+js美甲店网页设计(5页)附源码
javascript·css·html
天天扭码36 分钟前
从数组到对象:JavaScript 遍历语法全解析(ES5 到 ES6 + 超详细指南)
前端·javascript·面试
拉不动的猪38 分钟前
前端开发中常见的数据结构优化问题
前端·javascript·面试
街尾杂货店&38 分钟前
css word
前端·css
Мартин.41 分钟前
[Meachines] [Hard] CrimeStoppers LFI+ZIP-Shell+Firefox-Dec+DLINK+rootme-0.5
前端·firefox
冰镇生鲜41 分钟前
快速静态界面 MDC规则约束 示范
前端
技术与健康1 小时前
【解读】Chrome 浏览器实验性功能全景
前端·chrome
Bald Monkey1 小时前
【Element Plus】解决移动设备使用 el-menu 和 el-sub-menu 时,子菜单需要点击两次才会隐藏的问题
前端·elementui·vue·element plus