We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d95f44 commit c722232Copy full SHA for c722232
packages/component/component/table/TableData.vue
@@ -641,7 +641,7 @@ const checkboxProps = computed(() => {
641
</tr>
642
643
<tr class="layui-table-cell-expand" v-if="slot.expand && isExpand">
644
- <td class="layui-table-cell" :colspan="columns.length">
+ <td class="layui-table-cell" :colspan="tableColumnKeys.length">
645
<slot name="expand" :data="data" :row="data"></slot>
646
</td>
647
packages/component/component/table/index.vue
@@ -70,7 +70,6 @@ const { t } = useI18n();
70
const slot = useSlots();
71
const tableRef = ref();
72
73
-const s = "";
74
const allChecked = ref(false);
75
const hasChecked = ref(false);
76
const tableDataSource = ref<any[]>([...props.dataSource]);
0 commit comments