From bc16414c69b4d9a95cdb543b707b9d30a10bb9bc Mon Sep 17 00:00:00 2001 From: estel <690930@qq.com> Date: Mon, 28 Jul 2025 12:19:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DRM=E7=BB=84=E4=BB=B6=E8=AD=A6?= =?UTF-8?q?=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/content/ReadMore.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/content/ReadMore.vue b/app/components/content/ReadMore.vue index 2225f24..73c0d3c 100644 --- a/app/components/content/ReadMore.vue +++ b/app/components/content/ReadMore.vue @@ -17,15 +17,15 @@ const { variant = 'subtle', title, icon = 'lucide:bookmark', + color = 'primary', } = defineProps<{ - color?: string; + color?: 'primary' | 'error' | 'secondary' | 'success' | 'info' | 'warning' | 'neutral'; description?: string; title?: string; to?: string; icon?: string; iconSize?: string; - variant?: string; - + variant?: 'subtle' | 'solid' | 'outline' | 'soft'; }>();