mirror of https://github.com/elk-zone/elk.git
24 lines
384 B
Vue
24 lines
384 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const paginator = useMasto().bookmarks.getIterator()
|
|
|
|
useHead({
|
|
title: 'Bookmarks',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<span text-lg font-bold>Bookmarks</span>
|
|
</template>
|
|
|
|
<slot>
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</slot>
|
|
</MainContent>
|
|
</template>
|