Jelajahi Sumber

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

windyeasy 2 bulan lalu
induk
melakukan
ef1e006530
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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
 }