2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2023-01-03 06:37:32 +02:00
|
|
|
<MkPagination :pagination="pagination">
|
2022-01-09 14:35:35 +02:00
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
2022-07-20 16:24:26 +03:00
|
|
|
<div>{{ i18n.ts.noUsers }}</div>
|
2022-01-09 14:35:35 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-02-22 07:43:18 +02:00
|
|
|
<template #default="{ items }">
|
2022-01-09 14:35:35 +02:00
|
|
|
<div class="efvhhmdq">
|
2023-02-22 07:43:18 +02:00
|
|
|
<MkUserInfo v-for="item in items" :key="item.id" class="user" :user="extractor(item)"/>
|
2022-01-09 14:35:35 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
<script lang="ts" setup>
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkUserInfo from '@/components/MkUserInfo.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
2022-07-20 16:24:26 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2023-02-22 07:43:18 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-01-09 14:35:35 +02:00
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
2023-02-22 07:43:18 +02:00
|
|
|
extractor?: (item: any) => any;
|
|
|
|
}>(), {
|
|
|
|
extractor: (item) => item,
|
|
|
|
});
|
2020-01-29 21:37:25 +02:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 21:37:25 +02:00
|
|
|
.efvhhmdq {
|
2022-01-09 14:35:35 +02:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: var(--margin);
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
</style>
|