28 lines
407 B
Vue
28 lines
407 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<mk-avatar v-for="user in us" :user="user" :key="user.id" style="width:32px;height:32px;"/>
|
||
|
</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>
|