Forráskód Böngészése

fix: the bgColor prop of profile-card componet not required

windyeasy 4 hete
szülő
commit
ef1e006530
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/components/profile-card.vue

+ 1 - 1
src/components/profile-card.vue

@@ -1,6 +1,6 @@
 <script lang="ts" setup>
 interface IProps {
-  bgColor: string
+  bgColor?: string
   link?: string
 }