elk/pages/mutes.vue
2022-11-30 06:49:25 +08:00

21 lines
387 B
Vue

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const paginator = useMasto().mutes.getIterator()
useHeadFixed({
title: 'Muted users',
})
</script>
<template>
<MainContent back>
<template #title>
<span text-lg font-bold>{{ $t('account.muted_users') }}</span>
</template>
<AccountPaginator :paginator="paginator" />
</MainContent>
</template>