CircleAvatar.vue 454 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="circle-avatar">
  3. <image :src="src" mode="aspectFill" class="avatar-image"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. src: {
  10. type: String,
  11. required: true
  12. }
  13. }
  14. }
  15. </script>
  16. <style scoped>
  17. .circle-avatar {
  18. width: 100px; /* 你可以根据需要调整大小 */
  19. height: 100px;
  20. border-radius: 50%;
  21. overflow: hidden;
  22. }
  23. .avatar-image {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. </style>