2022-11-26 12:58:10 +00:00
|
|
|
<script setup lang="ts">
|
2022-12-22 17:48:41 +00:00
|
|
|
import TimelineDomainBlocks from '~~/components/timeline/TimelineDomainBlocks.vue'
|
|
|
|
|
2022-11-26 12:58:10 +00:00
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-11-29 22:49:25 +00:00
|
|
|
useHeadFixed({
|
2022-11-26 12:58:10 +00:00
|
|
|
title: 'Blocked domains',
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
2022-11-29 21:50:13 +00:00
|
|
|
<span text-lg font-bold>{{ $t('account.blocked_domains') }}</span>
|
2022-11-26 12:58:10 +00:00
|
|
|
</template>
|
|
|
|
|
2022-12-22 17:48:41 +00:00
|
|
|
<TimelineDomainBlocks v-if="isMastoInitialised" />
|
2022-11-26 12:58:10 +00:00
|
|
|
</MainContent>
|
|
|
|
</template>
|