Antd+vue table列内容过多实现换行显示
【代码】Antd+vue table列内容过多实现换行显示。
·
效果如下图所示:
代码实现,在Column列中加入下面代码:
customCell:() => {
return {
style: {
wordWrap:'break-word',
wordBreak:'break-all',
whiteSpace:'normal',
minHeight:'50px',
width: '50px',
}
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)