1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 14:28:10 +09:00
elk/components/timeline/TimelineMutes.vue

8 lines
156 B
Vue
Raw Normal View History

<script setup lang="ts">
2023-01-15 17:38:02 +09:00
const paginator = useMastoClient().v1.mutes.list()
</script>
<template>
<AccountPaginator :paginator="paginator" />
</template>