2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img
|
|
|
|
src="/static-assets/badges/info.png"
|
|
|
|
class="_ghost"
|
|
|
|
alt="Info"
|
|
|
|
/>
|
|
|
|
<div>{{ i18n.ts.noUsers }}</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-01-09 13:35:35 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<template #default="{ items: users }">
|
|
|
|
<div class="efvhhmdq">
|
|
|
|
<MkUserInfo
|
|
|
|
v-for="user in users"
|
|
|
|
:key="user.id"
|
|
|
|
class="user"
|
|
|
|
:user="user"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { ref } from "vue";
|
|
|
|
import MkUserInfo from "@/components/MkUserInfo.vue";
|
|
|
|
import MkPagination, { Paging } from "@/components/MkPagination.vue";
|
|
|
|
import { userPage } from "@/filters/user";
|
|
|
|
import { i18n } from "@/i18n";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.efvhhmdq {
|
2022-01-09 13:35:35 +01:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: var(--margin);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|