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

21 lines
387 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>
2022-11-30 06:50:13 +09:00
<span text-lg font-bold>{{ $t('account.blocked_users') }}</span>
2022-11-26 21:58:10 +09:00
</template>
<AccountPaginator :paginator="paginator" />
</MainContent>
</template>