Преглед изворни кода

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

windyeasy пре 2 месеци
родитељ
комит
ef1e006530
1 измењених фајлова са 1 додато и 1 уклоњено
  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
 }