2023-01-05 08:47:58 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
const pwaEnabled = useRuntimeConfig().public.pwaEnabled
|
|
|
|
|
|
|
|
useHeadFixed({
|
2023-01-09 09:31:00 +00:00
|
|
|
title: () => `${t('settings.notifications.label')} | ${t('nav.settings')}`,
|
2023-01-05 08:47:58 +00:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent back-on-small-screen>
|
|
|
|
<template #title>
|
|
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
2023-01-09 09:31:00 +00:00
|
|
|
<span>{{ $t('settings.notifications.label') }}</span>
|
2023-01-05 08:47:58 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<SettingsItem
|
|
|
|
command
|
|
|
|
:text="$t('settings.notifications.notifications.label')"
|
|
|
|
to="/settings/notifications/notifications"
|
|
|
|
/>
|
|
|
|
<SettingsItem
|
|
|
|
command
|
|
|
|
:disabled="!pwaEnabled"
|
|
|
|
:text="$t('settings.notifications.push_notifications.label')"
|
|
|
|
:description="$t('settings.notifications.push_notifications.description')"
|
|
|
|
to="/settings/notifications/push-notifications"
|
|
|
|
/>
|
|
|
|
</MainContent>
|
|
|
|
</template>
|