12345678910111213141516171819202122232425262728 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { ref } from 'vue'
- import { useArticleSeen } from '../../composable/useArticleSeen.ts'
- interface Props {
- subject?: Maybe<string>
- to?: Maybe<string>
- }
- defineProps<Props>()
- const emit = defineEmits<{
- seen: []
- }>()
- const articleElement = ref<HTMLDivElement>()
- useArticleSeen(articleElement, emit)
- </script>
- <template>
- <div ref="articleElement" class="text-gray text-center">
- "{{ subject }}" -> "{{ to }}"
- </div>
- </template>
|