ElementUI Table 拖动列改变宽度事件@header-dragend(文字换行,导致底部拖动条消失的bug)

解决表格表头文字换行,导致底部拖动条消失 

this.$nextTick(()=>{                                     //动态表格加载完之后,重新布局                             
        this.$refs.Tablebom.doLayout();
      });


        / /min-width写成百分比
       ...
      
       ...
     

 methods: {
  changeColWidth(nw,ow,col,evt){
      // console.log(nw,ow,col,evt,'拖拽');
      this.$nextTick(()=>{                                     //动态表格加载完之后,重新布局                             
        this.$refs.Tablebom.doLayout();
      });
    },

}

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