antdesign Vue table - 换行

表头换行

customHeaderCell: () => {
  return {
    style: {
      whiteSpace: 'pre-wrap',
    },
  };
},

列表换行

customCell:() => {
  return {
    style: {
      wordWrap:'break-word',
      wordBreak:'break-all',
      whiteSpace:'normal',
      minHeight:'50px',
      // width:150,
    }
  }
}

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