fix: 当TableAction的actions属性中的ActionItem传递了color属性时,PopConfirm的指示箭头颜色异常问题 (#3597)

Co-authored-by: linja <linja@film.com>
1个文件已修改
3 ■■■■■ 已修改文件
src/components/Button/src/PopConfirmButton.vue 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/Button/src/PopConfirmButton.vue
@@ -47,6 +47,9 @@
        if (!props.enable) {
          return Button;
        }
        if (bindValues.color) {
          delete bindValues.color;
        }
        return h(Popconfirm, bindValues, { default: () => Button });
      };
    },