iceshrimp-legacy/src/client/app/common/views/components/avatars.vue
syuilo c7daaba370
🎨
2019-05-21 08:44:36 +09:00

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>