CommonSectionMenuItem.vue 496 B

12345678910111213141516171819
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. export interface Props {
  4. label?: string
  5. body?: string | number
  6. }
  7. defineProps<Props>()
  8. </script>
  9. <template>
  10. <div class="border-b border-gray-300 px-3 first:pt-1 last:border-0 last:pb-1">
  11. <section :aria-label="$t(label)" class="min-h-[54px] py-2">
  12. <div class="text-xs text-white/80">{{ $t(label) }}</div>
  13. <slot>{{ body }}</slot>
  14. </section>
  15. </div>
  16. </template>