mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
24 lines
448 B
Vue
24 lines
448 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const paginator = useMasto().favourites.getIterator()
|
|
const { t } = useI18n()
|
|
|
|
useHead({
|
|
title: () => t('nav_side.favourites'),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<span text-lg font-bold>{{ t('nav_side.favourites') }}</span>
|
|
</template>
|
|
<slot>
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|