fix: 修复Table组件已知问题

This commit is contained in:
kailong321200875 2023-07-10 17:54:03 +08:00
parent 9220382ec8
commit b1a83f6018
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ export default defineComponent({
>
{{
default: () => renderTableColumn(),
empty: () => getSlot(slots, 'empty') || props.emptyText,
empty: () => getSlot(slots, 'empty') || unref(getProps).emptyText,
append: () => getSlot(slots, 'append')
}}
</ElTable>