From 9c8718e11602172923ef0ebb940f25a3454e8476 Mon Sep 17 00:00:00 2001 From: XiaLangQing <413901125@qq.com> Date: Fri, 1 Nov 2024 10:55:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A1=A8=E6=A0=BC=E6=8E=A7=E4=BB=B6?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E6=8C=89=E9=92=AE=E6=94=B9=E5=9B=9Eprimary?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/components/global/button.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web-antd/src/components/global/button.ts b/apps/web-antd/src/components/global/button.ts index b806da20..397fdf61 100644 --- a/apps/web-antd/src/components/global/button.ts +++ b/apps/web-antd/src/components/global/button.ts @@ -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, ); },