elk/pages/bookmarks.vue

24 lines
384 B
Vue
Raw Normal View History

2022-11-16 00:20:07 +03:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().bookmarks.getIterator()
2022-11-25 14:48:48 +03:00
useHead({
title: 'Bookmarks',
})
2022-11-16 00:20:07 +03:00
</script>
<template>
<MainContent>
<template #title>
2022-11-23 11:08:49 +03:00
<span text-lg font-bold>Bookmarks</span>
2022-11-16 00:20:07 +03:00
</template>
2022-11-24 09:42:26 +03:00
2022-11-16 00:20:07 +03:00
<slot>
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>