16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
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
|