elk/pages/blocks.vue

21 wiersze
388 B
Vue
Czysty Zwykły widok Historia

2022-11-26 12:58:10 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().blocks.iterate()
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" />
2022-11-26 12:58:10 +00:00
</MainContent>
</template>