Przeglądaj źródła

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

windyeasy 4 tygodni temu
rodzic
commit
ef1e006530
1 zmienionych plików z 1 dodań i 1 usunięć
  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
 }