elk/pages/bookmarks.vue

26 lines
447 B
Vue
Raw Normal View History

2022-11-15 21:20:07 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().bookmarks.getIterator()
2022-11-25 11:48:48 +00:00
2022-11-28 14:25:32 +00:00
const { t } = useI18n()
2022-11-25 11:48:48 +00:00
useHead({
2022-11-28 14:25:32 +00:00
title: () => t('nav_side.bookmarks'),
2022-11-25 11:48:48 +00:00
})
2022-11-15 21:20:07 +00:00
</script>
<template>
<MainContent>
<template #title>
2022-11-28 14:25:32 +00:00
<span text-lg font-bold>{{ t('nav_side.bookmarks') }}</span>
2022-11-15 21:20:07 +00:00
</template>
2022-11-24 06:42:26 +00:00
2022-11-15 21:20:07 +00:00
<slot>
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>