浏览代码

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
 }