CommonLogo.vue 482 B

12345678910111213141516
  1. <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. import { computed } from 'vue'
  4. import { useApplicationStore } from '#shared/stores/application.ts'
  5. const application = useApplicationStore()
  6. const logoUrl = computed(() => {
  7. return `/api/v1/system_assets/product_logo/${application.config.product_logo}`
  8. })
  9. </script>
  10. <template>
  11. <img class="max-h-32 max-w-[14rem]" :src="logoUrl" :alt="$c.product_name" />
  12. </template>