yumechi-no-kuni/packages/client/src/components/avatars.vue

25 lines
524 B
Vue
Raw Normal View History

2019-05-20 18:44:36 -05:00
<template>
<div>
2022-01-06 08:07:32 -06:00
<div v-for="user in users" :key="user.id" style="display:inline-block;width:32px;height:32px;margin-right:8px;">
2021-04-17 09:52:54 -05:00
<MkAvatar :user="user" style="width:32px;height:32px;" :show-indicator="true"/>
2020-02-08 01:51:27 -06:00
</div>
2019-05-20 18:44:36 -05:00
</div>
</template>
2022-01-06 08:07:32 -06:00
<script lang="ts" setup>
import { onMounted, ref } from 'vue';
2021-11-11 11:02:25 -06:00
import * as os from '@/os';
2019-05-20 18:44:36 -05:00
2022-01-06 08:07:32 -06:00
const props = defineProps<{
userIds: string[];
}>();
const users = ref([]);
onMounted(async () => {
users.value = await os.api('users/show', {
userIds: props.userIds
});
2019-05-20 18:44:36 -05:00
});
</script>