Bläddra i källkod

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

windyeasy 2 månader sedan
förälder
incheckning
ef1e006530
1 ändrade filer med 1 tillägg och 1 borttagningar
  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
 }