fix: 当TableAction的actions属性中的ActionItem传递了color属性时,PopConfirm的指示箭头颜色异常问题 (#3597)
Co-authored-by: linja <linja@film.com>
This commit is contained in:
parent
6f4bdae5c2
commit
e6a73840ab
|
|
@ -47,6 +47,9 @@
|
||||||
if (!props.enable) {
|
if (!props.enable) {
|
||||||
return Button;
|
return Button;
|
||||||
}
|
}
|
||||||
|
if (bindValues.color) {
|
||||||
|
delete bindValues.color;
|
||||||
|
}
|
||||||
return h(Popconfirm, bindValues, { default: () => Button });
|
return h(Popconfirm, bindValues, { default: () => Button });
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue