修复RM组件警告

This commit is contained in:
2025-07-28 12:19:33 +08:00
parent 378c5f3658
commit bc16414c69

View File

@@ -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';
}>();
</script>