1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-21 21:56:48 +01:00
elk/pages/blocks.vue

20 lines
343 B
Vue

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
useHeadFixed({
title: 'Blocked users',
})
</script>
<template>
<MainContent back>
<template #title>
<span text-lg font-bold>{{ $t('account.blocked_users') }}</span>
</template>
<TimelineBlocks v-if="isMastoInitialised" />
</MainContent>
</template>