elk/pages/domain_blocks.vue

22 lines
385 B
Vue
Raw Permalink Normal View History

2022-11-26 12:58:10 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
2023-01-04 14:04:37 +00:00
const { t } = useI18n()
useHydratedHead({
2023-01-04 14:04:37 +00:00
title: () => t('nav.blocked_domains'),
2022-11-26 12:58:10 +00:00
})
</script>
<template>
<MainContent back>
<template #title>
2023-01-04 23:17:30 +00:00
<span timeline-title-style>{{ $t('nav.blocked_domains') }}</span>
2022-11-26 12:58:10 +00:00
</template>
2023-01-15 08:38:02 +00:00
<TimelineDomainBlocks v-if="isHydrated" />
2022-11-26 12:58:10 +00:00
</MainContent>
</template>