1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-05 22:16:49 +01:00
elk/pages/blocks.vue

21 lines
388 B
Vue

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().blocks.iterate()
useHeadFixed({
title: 'Blocked users',
})
</script>
<template>
<MainContent back>
<template #title>
<span text-lg font-bold>{{ $t('account.blocked_users') }}</span>
</template>
<AccountPaginator :paginator="paginator" />
</MainContent>
</template>