arco-design-vue icon indicating copy to clipboard operation
arco-design-vue copied to clipboard

table column希望增加 min-width 属性

Open Dongary opened this issue 2 years ago • 5 comments

Basic Info

What are the similar cases of this feature

element-plus 就有这个属性

What problem does this feature solve?

解决在使用table时有些自定义的字段的长度未知的,但是又不希望在没有值或者值过短时,整个列只能固定宽度,而是有个最小宽度,然后长的话自适应

Dongary avatar Jun 27 '23 10:06 Dongary

element的min-width等同于占比,类似于flex:1,flex:2。也类似于android中的layout_weight=1,layout_weight=2 特别需要这个功能,或者width提供百分比参数如width='30%'也行

liu-xinhui avatar Jul 06 '23 07:07 liu-xinhui

强烈希望增加minWidth或width支持%或vw

mengxk2018 avatar Aug 02 '23 05:08 mengxk2018

minWidth确实需要,还是挺常用的

987674712 avatar Dec 21 '23 04:12 987674712

image 大家可以看看文档,对应的cell可以设置属性style添加minWidth。 bodyCellStyle: (record) => { return { 'minWidth': '200px' } }

iamning1993 avatar Jan 17 '24 05:01 iamning1993

图像 大家可以看看文档,对应的cell可以设置属性style添加minWidth。 bodyCellStyle: (record) => { return { 'minWidth': '200px' } }

请问这样设置生效么,我参照这样设置好像没有生效

GXdeng-Max avatar Feb 06 '24 08:02 GXdeng-Max

恐怕需要把宽度样式加在 colgroup 的 col 中才会生效。

jasonHzq avatar Apr 30 '24 16:04 jasonHzq