Avatar.vue 736 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="avatar-container" @click="$emit('click')">
  3. <image
  4. :src="src"
  5. :mode="mode"
  6. :style="{
  7. borderRadius: radius * 2 + 'rpx',
  8. width: size * 2 + 'rpx',
  9. height: size * 2 + 'rpx',
  10. margin: margin,
  11. }"
  12. />
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. src: {
  19. type: String,
  20. required: true,
  21. },
  22. radius: {
  23. type: Number,
  24. default: 100,
  25. },
  26. mode: {
  27. type: String,
  28. },
  29. size: {
  30. type: Number,
  31. default: 60,
  32. },
  33. margin: {
  34. type: String,
  35. default: '',
  36. },
  37. },
  38. }
  39. </script>
  40. <style lang="scss" scoped>
  41. .avatar-container {
  42. image {
  43. flex-shrink: 0;
  44. }
  45. }
  46. </style>