aboutsummaryrefslogtreecommitdiff
path: root/src/components/avatar_list/avatar_list.js
blob: 7bd1c556edbfdf95381dfd321857462635a27375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import UserAvatar from '../user_avatar/user_avatar.vue'

const AvatarList = {
  props: ['avatars'],
  computed: {
    slicedAvatars () {
      return this.avatars ? this.avatars.slice(0, 10) : []
    }
  },
  components: {
    UserAvatar
  }
}

export default AvatarList