elk/pages/pinned.vue

24 lines
495 B
Vue
Raw Normal View History

2022-11-26 12:58:10 +00:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().accounts.getStatusesIterable(currentUser.value!.account.id, { pinned: true })
2022-11-29 21:50:13 +00:00
const { t } = useI18n()
2022-11-26 12:58:10 +00:00
useHeadFixed({
2022-11-29 21:50:13 +00:00
title: () => t('account.pinned'),
2022-11-26 12:58:10 +00:00
})
</script>
<template>
<MainContent>
<template #title>
<div i-ri:pushpin-line h-6 mr-1 />
2022-11-29 21:50:13 +00:00
<span>{{ t('account.pinned') }}</span>
2022-11-26 12:58:10 +00:00
</template>
<TimelinePaginator :paginator="paginator" />
</MainContent>
</template>