fix(components): [table] typed column's min-width not effect (#9540) (#9593)

This commit is contained in:
小的的
2022-09-04 10:16:53 -05:00
committed by GitHub
parent 6eded0bae8
commit d0dbd19f75

View File

@@ -65,6 +65,9 @@ function useRender<T>(
if (realMinWidth.value) {
column.minWidth = realMinWidth.value
}
if (!realWidth.value && realMinWidth.value) {
column.width = undefined
}
if (!column.minWidth) {
column.minWidth = 80
}