elk/pages/[[server]]/explore/users.vue

29 lines
803 B
Vue

<script lang="ts" setup>
const { t } = useI18n()
// limit: 20 is the default configuration of the official client
const paginator = useMasto().v2.suggestions.list({ limit: 20 })
useHeadFixed({
title: () => isHydrated.value ? `${t('tab.for_you')} | ${t('nav.explore')}` : '',
})
</script>
<template>
<CommonPaginator :paginator="paginator" key-prop="account">
<template #default="{ item }">
<AccountBigCard
:account="item.account"
as="router-link"
:to="getAccountRoute(item.account)"
border="b base"
/>
</template>
<template #loading>
<AccountBigCardSkeleton border="b base" />
<AccountBigCardSkeleton border="b base" op50 />
<AccountBigCardSkeleton border="b base" op25 />
</template>
</CommonPaginator>
</template>