elk/pages/notifications.vue

37 wiersze
765 B
Vue
Czysty Zwykły widok Historia

2022-11-15 21:21:54 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
2022-11-28 14:25:32 +00:00
const { t } = useI18n()
2022-11-29 23:25:29 +00:00
const tabs = $computed(() => [
{
name: 'all',
to: '/notifications',
2022-11-29 23:25:29 +00:00
display: t('tab.notifications_all'),
},
{
name: 'mention',
to: '/notifications/mention',
2022-11-29 23:25:29 +00:00
display: t('tab.notifications_mention'),
},
] as const)
2022-11-15 21:21:54 +00:00
</script>
<template>
<MainContent>
<template #title>
2022-11-29 20:15:53 +00:00
<NuxtLink to="/notifications" text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
<div i-ri:notification-4-line />
<span>{{ t('nav_side.notifications') }}</span>
</NuxtLink>
2022-11-15 21:21:54 +00:00
</template>
2022-11-24 06:42:26 +00:00
2022-11-23 08:08:49 +00:00
<template #header>
<CommonRouteTabs replace :options="tabs" />
2022-11-23 08:08:49 +00:00
</template>
<NuxtPage />
2022-11-15 21:21:54 +00:00
</MainContent>
</template>