mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
21 lines
357 B
Vue
21 lines
357 B
Vue
|
<script setup lang="ts">
|
||
|
definePageMeta({
|
||
|
middleware: 'auth',
|
||
|
})
|
||
|
|
||
|
const paginator = masto.mutes.getIterator()
|
||
|
|
||
|
useHead({
|
||
|
title: 'Muted users',
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<MainContent back>
|
||
|
<template #title>
|
||
|
<span text-lg font-bold>Muted users</span>
|
||
|
</template>
|
||
|
<AccountPaginator :paginator="paginator" />
|
||
|
</MainContent>
|
||
|
</template>
|