elk/pages/blocks.vue
2022-11-26 21:07:36 +08:00

21 lines
362 B
Vue

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = masto.blocks.getIterator()
useHead({
title: 'Blocked users',
})
</script>
<template>
<MainContent back>
<template #title>
<span text-lg font-bold>Blocked users</span>
</template>
<AccountPaginator :paginator="paginator" />
</MainContent>
</template>