1
0
mirror of https://github.com/elk-zone/elk synced 2024-12-03 09:18:06 +09:00
elk/components/timeline/TimelineMutes.vue

8 lines
150 B
Vue
Raw Normal View History

<script setup lang="ts">
const paginator = useMasto().mutes.iterate()
</script>
<template>
<AccountPaginator :paginator="paginator" />
</template>