elementui el-table 动态表头自适应宽度

autoColumnWidth(h, { column }){

let columnLength = column.label.length

//设置每个字符长度为13,如果格子宽度小于60,则直接让其等于60

column.minWidth = columnLength * 13 < 60 ? 60 : columnLength * 13

return h( 'span' , { class: 'cell-content' , style : { width : '100%' } } , [column.label] )

}

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