AttributeRichtext.vue 407 B

12345678910111213
  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. import type { ObjectAttributeProps } from '../../types.ts'
  6. defineProps<ObjectAttributeProps<ObjectAttributeRichtext, string>>()
  7. </script>
  8. <template>
  9. <div v-html="value" />
  10. </template>