2022-11-16 00:20:07 +03:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-11-26 18:42:58 +03:00
|
|
|
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>
|