1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-01 00:08:11 +09:00
elk/pages/blocks.vue

21 lines
367 B
Vue
Raw Normal View History

2022-11-26 21:58:10 +09:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().blocks.getIterator()
2022-11-26 21:58:10 +09:00
useHead({
title: 'Blocked users',
})
</script>
<template>
<MainContent back>
<template #title>
<span text-lg font-bold>Blocked users</span>
</template>
<AccountPaginator :paginator="paginator" />
</MainContent>
</template>