egirlskey/src/client/components/avatars.vue

30 lines
472 B
Vue
Raw Normal View History

2019-05-20 23:44:36 +00:00
<template>
<div>
2020-02-08 07:51:27 +00: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-20 23:44:36 +00: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>