elk/pages/blocks.vue

20 wiersze
343 B
Vue
Czysty Zwykły widok Historia

2022-11-26 12:58:10 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
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>
<TimelineBlocks v-if="isMastoInitialised" />
2022-11-26 12:58:10 +00:00
</MainContent>
</template>