fix: 表格控件操作按钮改回primary。

This commit is contained in:
XiaLangQing 2024-11-01 10:55:05 +08:00
parent 05bde90ca7
commit 9c8718e116

View File

@ -14,7 +14,7 @@ export const GhostButton = defineComponent({
return () =>
h(
Button,
{ ...props, ...attrs, type: 'link', ghost: true, size: 'small' },
{ ...props, ...attrs, type: 'primary', ghost: true, size: 'small' },
slots,
);
},