aboutsummaryrefslogtreecommitdiff
path: root/src/components/avatar_list/avatar_list.js
blob: d65125c2c25d048485fc2924be0f64d19743913c (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, 15) : []
    }
  },
  components: {
    UserAvatar
  }
}

export default AvatarList