1234567891011121314151617181920212223242526 |
- <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- interface Props {
- entities: unknown[]
- totalCount: number
- disabled?: boolean
- }
- defineProps<Props>()
- </script>
- <template>
- <button
- v-if="entities.length < totalCount"
- class="flex min-h-[54px] items-center justify-center gap-2"
- :class="{
- 'cursor-default text-gray-100/50': disabled,
- 'text-blue': !disabled,
- }"
- type="button"
- :disabled="disabled"
- >
- {{ $t('Show %s more', totalCount - entities.length) }}
- </button>
- </template>
|