AttributeTextarea.vue 419 B

123456789101112131415161718
  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 { textToHtml } from '#shared/utils/helpers.ts'
  5. import type { ObjectAttributeTextarea } from './attributeTextareaTypes.ts'
  6. defineProps<{
  7. attribute: ObjectAttributeTextarea
  8. value: string
  9. }>()
  10. </script>
  11. <template>
  12. <div v-html="textToHtml(value)" />
  13. </template>