* fix: 修复可编辑表格不显示 0 的bug * fix: 修复编辑单元格为空时不能触发编辑的bug
@@ -6,7 +6,7 @@
@click="handleEdit"
>
<div class="cell-content" :title="column.ellipsis ? getValues ?? '' : ''">
- {{ getValues ? getValues : ' ' }}
+ {{ getValues || getValues === 0 ? getValues : ' ' }}
</div>
<FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" />