elk/pages/[[server]]/explore/users.vue
2023-01-09 22:27:03 +02:00

28 lines
784 B
Vue

<script lang="ts" setup>
const { $t } = useFluent()
// limit: 20 is the default configuration of the official client
const paginator = useMasto().v2.suggestions.list({ limit: 20 })
useHeadFixed({
title: () => `${$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>