mirror of https://github.com/elk-zone/elk.git
24 lines
495 B
Vue
24 lines
495 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const paginator = useMasto().accounts.getStatusesIterable(currentUser.value!.account.id, { pinned: true })
|
|
const { t } = useI18n()
|
|
|
|
useHeadFixed({
|
|
title: () => t('account.pinned'),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent>
|
|
<template #title>
|
|
<div i-ri:pushpin-line h-6 mr-1 />
|
|
<span>{{ t('account.pinned') }}</span>
|
|
</template>
|
|
|
|
<TimelinePaginator :paginator="paginator" />
|
|
</MainContent>
|
|
</template>
|