We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01003f commit 12e85ddCopy full SHA for 12e85dd
src/components/ProjectCard.vue
@@ -68,7 +68,7 @@
68
variant="secondary"
69
:href="buttonHref"
70
:disabled="buttonDisabled"
71
- v-bind="buttonHref ? { target: '_blank' } : {}"
+ v-bind="{ target: '_blank' }"
72
:rel="buttonRel"
73
class="w-full"
74
>
@@ -89,7 +89,7 @@ import Button from './ui/Button.vue';
89
interface Props {
90
title: string;
91
description: string;
92
- icon?: string;
+ icon: string;
93
iconImage?: string;
94
status: 'available' | 'coming-soon' | 'interactive';
95
statusLabel: string;
0 commit comments