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