diff --git a/src/components/Button/src/PopConfirmButton.vue b/src/components/Button/src/PopConfirmButton.vue index 4c110fa07e0..8862b40b7fe 100644 --- a/src/components/Button/src/PopConfirmButton.vue +++ b/src/components/Button/src/PopConfirmButton.vue @@ -41,7 +41,7 @@ return () => { const bindValues = omit(unref(getBindValues), 'icon'); - const Button = h(BasicButton, bindValues, extendSlots(slots)); + const Button = h(BasicButton, omit(bindValues, 'title'), extendSlots(slots)); // If it is not enabled, it is a normal button if (!props.enable) { diff --git a/src/components/Table/src/components/TableAction.vue b/src/components/Table/src/components/TableAction.vue index 706df9356bd..90ce43f14e3 100644 --- a/src/components/Table/src/components/TableAction.vue +++ b/src/components/Table/src/components/TableAction.vue @@ -3,10 +3,8 @@