element UI 中 el-table formatter 属性显示固定字数且超出省略号

// 格式化表格内容
stateFormat(row, column, cellValue) {
  if (!cellValue) return "";
  if (cellValue.length > 20) {
    // 最多显示20个字符
    return cellValue.slice(0, 20) + "...";
  }
  return cellValue;
},

你可能感兴趣的:(Vue,Element,UI,Web,FrontEnd,vue.js,前端,javascript,table,formatter,el-table超出省略号)