mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
3c43a1cdd1
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
22 lines
580 B
Vue
22 lines
580 B
Vue
<script setup lang="ts">
|
|
const { client } = $(useMasto())
|
|
const paginator = client.v1.domainBlocks.list()
|
|
|
|
async function unblock(domain: string) {
|
|
await client.v1.domainBlocks.unblock(domain)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<CommonPaginator :paginator="paginator">
|
|
<template #default="{ item }">
|
|
<CommonDropdownItem class="!cursor-auto">
|
|
{{ item }}
|
|
<template #actions>
|
|
<div i-ri:lock-unlock-line text-primary cursor-pointer @click="unblock(item)" />
|
|
</template>
|
|
</CommonDropdownItem>
|
|
</template>
|
|
</CommonPaginator>
|
|
</template>
|