2023-01-05 17:47:58 +09:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
2023-04-17 04:33:51 +09:00
|
|
|
useHydratedHead({
|
2023-01-05 17:47:58 +09:00
|
|
|
title: () => `${t('settings.notifications.notifications.label')} | ${t('settings.notifications.label')} | ${t('nav.settings')}`,
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2024-04-06 07:26:22 +09:00
|
|
|
<MainContent back skip-content="settings.notifications.notifications.label">
|
2023-01-05 17:47:58 +09:00
|
|
|
<template #title>
|
|
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
2023-11-28 19:54:22 +09:00
|
|
|
<div i-ri:test-tube-line />
|
2024-02-25 03:24:19 +09:00
|
|
|
<span>{{ $t('settings.notifications.notifications.label') }}</span>
|
2023-01-05 17:47:58 +09:00
|
|
|
</div>
|
|
|
|
</template>
|
2023-11-28 19:54:22 +09:00
|
|
|
<div text-center mt-10>
|
|
|
|
<h1 text-4xl>
|
2024-02-25 03:24:19 +09:00
|
|
|
<span sr-only>{{ $t('settings.notifications.under_construction') }}</span>
|
2023-11-28 19:54:22 +09:00
|
|
|
🚧
|
|
|
|
</h1>
|
|
|
|
<h3 text-xl>
|
2024-02-25 03:24:19 +09:00
|
|
|
{{ $t('settings.notifications.notifications.label') }}
|
2023-11-28 19:54:22 +09:00
|
|
|
</h3>
|
|
|
|
</div>
|
2023-01-05 17:47:58 +09:00
|
|
|
</MainContent>
|
|
|
|
</template>
|