1
0
mirror of https://github.com/elk-zone/elk synced 2025-01-19 22:02:50 +09:00
elk/pages/favourites.vue

24 lines
448 B
Vue
Raw Normal View History

2022-11-16 06:21:39 +09:00
<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().favourites.getIterator()
2022-11-28 19:14:58 +09:00
const { t } = useI18n()
2022-11-25 20:48:48 +09:00
useHead({
2022-11-28 19:14:58 +09:00
title: () => t('nav_side.favourites'),
2022-11-25 20:48:48 +09:00
})
2022-11-16 06:21:39 +09:00
</script>
<template>
<MainContent>
<template #title>
2022-11-28 19:14:58 +09:00
<span text-lg font-bold>{{ t('nav_side.favourites') }}</span>
2022-11-16 06:21:39 +09:00
</template>
<slot>
<TimelinePaginator :paginator="paginator" />
</slot>
</MainContent>
</template>