GuidedSetupStatusMessage.vue 447 B

1234567891011121314151617181920
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import CommonLoader from '#desktop/components/CommonLoader/CommonLoader.vue'
  4. interface Props {
  5. message?: string
  6. }
  7. defineProps<Props>()
  8. </script>
  9. <template>
  10. <div class="text-center mt-1">
  11. <CommonLabel v-if="message">
  12. {{ $t(message) }}
  13. </CommonLabel>
  14. <CommonLoader class="mt-5 mb-3" loading />
  15. </div>
  16. </template>