AttributeRichtext.vue 351 B

123456789101112131415
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts">
  3. /* eslint-disable vue/no-v-html */
  4. import type { ObjectAttributeRichtext } from './attributeRichtextTypes.ts'
  5. defineProps<{
  6. attribute: ObjectAttributeRichtext
  7. value: string
  8. }>()
  9. </script>
  10. <template>
  11. <div v-html="value" />
  12. </template>