Skip to content

Commit

Permalink
fix: 修复expandAllRows与表数据为0时不渲染表格逻辑
Browse files Browse the repository at this point in the history
  • Loading branch information
kanyxmo committed Jul 1, 2024
1 parent 9aa3a22 commit e427d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ma-crud/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
<div ref="crudContentRef">
<slot name="crudContent" v-bind="tableData">
<a-table
v-if="(! options.expandAllRows || tableData.length > 0) && tableIsShow"
v-if="tableIsShow"
v-bind="$attrs"
ref="tableRef"
:key="options.pk"
Expand Down

0 comments on commit e427d82

Please sign in to comment.