fix(table): 列操作点击后关闭popover

This commit is contained in:
roymondchen 2026-07-27 12:51:08 +08:00
parent b564c9e4aa
commit 596d86f2ab

View File

@ -134,7 +134,8 @@ const actionHandler = async (action: ColumnActionConfig, row: any, index: number
} else {
await action.handler?.(row, index);
}
action.after?.(row, index);
await action.after?.(row, index);
popoverVisible.value = false;
};
const save = async (index: number, config: ColumnConfig) => {