2019-05-21 01:44:36 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-02-08 08:51:27 +01:00
|
|
|
<div v-for="user in us" :key="user.id" style="width:32px;height:32px;margin-right:8px;">
|
|
|
|
<mk-avatar :user="user" style="width:32px;height:32px;"/>
|
|
|
|
</div>
|
2019-05-21 01:44:36 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
userIds: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
us: []
|
|
|
|
};
|
|
|
|
},
|
|
|
|
async created() {
|
|
|
|
this.us = await this.$root.api('users/show', {
|
|
|
|
userIds: this.userIds
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|