DeliveryMessage.vue 320 B

123456789101112131415
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. interface Props {
  4. content: string
  5. }
  6. defineProps<Props>()
  7. </script>
  8. <template>
  9. <CommonAlert id="bottom" variant="warning">
  10. <p>{{ $t('Delivery failed: "%s"', content) }}</p>
  11. </CommonAlert>
  12. </template>