mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
baa2696d31
Co-authored-by: Daniel Roe <daniel@roe.dev>
22 lines
437 B
Vue
22 lines
437 B
Vue
<script setup lang="ts">
|
|
import TimelineDomainBlocks from '~~/components/timeline/TimelineDomainBlocks.vue'
|
|
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
useHeadFixed({
|
|
title: 'Blocked domains',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back>
|
|
<template #title>
|
|
<span text-lg font-bold>{{ $t('account.blocked_domains') }}</span>
|
|
</template>
|
|
|
|
<TimelineDomainBlocks v-if="isMastoInitialised" />
|
|
</MainContent>
|
|
</template>
|