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

16 lines
263 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: ['users'],
2019-04-02 02:30:23 +00:00
computed: {
slicedUsers () {
return this.users ? this.users.slice(0, 15) : []
2019-04-02 02:30:23 +00:00
}
},
components: {
UserAvatar
}
}
export default AvatarList