pleroma-fe/src/components/avatar_list/avatar_list.js

16 lines
271 B
JavaScript
Raw Normal View History

2019-04-02 02:30:23 +00:00
import UserAvatar from '../user_avatar/user_avatar.vue'
const AvatarList = {
props: ['avatars'],
computed: {
slicedAvatars () {
2019-04-02 16:02:01 +00:00
return this.avatars ? this.avatars.slice(0, 15) : []
2019-04-02 02:30:23 +00:00
}
},
components: {
UserAvatar
}
}
export default AvatarList