2022-11-26 12:58:10 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-12-03 05:36:10 +00:00
|
|
|
const paginator = useMasto().blocks.iterate()
|
2022-11-26 12:58:10 +00:00
|
|
|
|
2022-11-29 22:49:25 +00:00
|
|
|
useHeadFixed({
|
2022-11-26 12:58:10 +00:00
|
|
|
title: 'Blocked users',
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
2022-11-29 21:50:13 +00:00
|
|
|
<span text-lg font-bold>{{ $t('account.blocked_users') }}</span>
|
2022-11-26 12:58:10 +00:00
|
|
|
</template>
|
|
|
|
<AccountPaginator :paginator="paginator" />
|
|
|
|
</MainContent>
|
|
|
|
</template>
|