el-tree 默认选中第一个数据

 

/**
     * 初始化左侧树
     * @param {*} GetDataLists
     */
    SetTreeDatas() {
      let _this = this;
      _this.$API.SysDictDataGetLeftdata().then((res) => {
        _this.treeData = res.data.data; //给树赋值
        this.$nextTick(() => {
          this.$refs.treeList &&
            this.$refs.treeList.setCurrentKey(this.treeData[0].ID); //默认选中第一条
          this.handleNodeClick(this.treeData[0]); //同时调用树点击事件
        });
      });
    },







你可能感兴趣的:(vue,elementui,vue.js,javascript,elementui)