fix: Table组件设置 align="center" 导致横向滚动条位置错误问题

This commit is contained in:
陈财富 2024-01-22 11:15:26 +08:00
parent a3436a32c6
commit 22f071d926
1 changed files with 1 additions and 0 deletions

View File

@ -339,6 +339,7 @@ export default defineComponent({
const bindValue: Recordable = { ...attrs, ...unref(getProps) } const bindValue: Recordable = { ...attrs, ...unref(getProps) }
delete bindValue.columns delete bindValue.columns
delete bindValue.data delete bindValue.data
delete bindValue.align
return bindValue return bindValue
}) })