This commit is contained in:
2026-05-02 09:59:06 +08:00
parent ea3e60c17c
commit 1af4075e9b
249 changed files with 11209 additions and 14884 deletions

View File

@@ -186,10 +186,9 @@ const emit = defineEmits<{
(e: 'column-change', columns: TableColumnData[]): void
}>()
// 计算需要插槽的列(动态插槽透传)
const slotColumns = computed(() => {
return props.columns.filter(col => col.slotName)
return props.columns.filter((col) => col.slotName)
})
const handleFormModelUpdate = (value: Record<string, any>) => {