1
0
elk/pages/domain_blocks.vue

22 lines
382 B
Vue
Raw Normal View History

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