You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
500 B

  1. <template>
  2. <view
  3. :class="[size, round ? 'round' : '', radius ? 'radius' : '', color ? 'bg-' + color : '']"
  4. :style="{
  5. backgroundImage: src ? `url(${src})` : 'none',
  6. backgroundColor: color || src ? 'none' : '#ccc'
  7. }"
  8. class="cu-avatar"
  9. >
  10. <slot></slot>
  11. <slot name="badge"></slot>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'l-avatar',
  17. props: {
  18. src: {},
  19. size: { default: 'df' },
  20. round: {},
  21. radius: {},
  22. color: {}
  23. }
  24. }
  25. </script>