diff --git a/apps/web-antd/src/components/table-action/table-action.vue b/apps/web-antd/src/components/table-action/table-action.vue index 21c8197d..72f7bf16 100644 --- a/apps/web-antd/src/components/table-action/table-action.vue +++ b/apps/web-antd/src/components/table-action/table-action.vue @@ -237,7 +237,7 @@ function getTooltipProps(tooltip: any | string) { } function handleMenuClick(e: any) { - const action = unref(getDropdownList)[e.key]; + const action = getDropdownList.value[e.key]; if (action.onClick && isFunction(action.onClick)) { action.onClick(); } @@ -294,10 +294,7 @@ function getActionKey(action: ActionItem, index: number) {