2022-11-26 21:58:10 +09:00
|
|
|
<script setup lang="ts">
|
|
|
|
definePageMeta({
|
|
|
|
middleware: 'auth',
|
|
|
|
})
|
|
|
|
|
2022-11-27 00:42:58 +09:00
|
|
|
const paginator = useMasto().mutes.getIterator()
|
2022-11-26 21:58:10 +09:00
|
|
|
|
|
|
|
useHead({
|
|
|
|
title: 'Muted users',
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MainContent back>
|
|
|
|
<template #title>
|
2022-11-30 06:50:13 +09:00
|
|
|
<span text-lg font-bold>{{ $t('account.muted_users') }}</span>
|
2022-11-26 21:58:10 +09:00
|
|
|
</template>
|
|
|
|
<AccountPaginator :paginator="paginator" />
|
|
|
|
</MainContent>
|
|
|
|
</template>
|