1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-20 02:49:57 +01:00
elk/components/status/StatusEditIndicator.vue

12 lines
337 B
Vue
Raw Normal View History

<script setup lang="ts">
const props = defineProps<{ editedAt: string }>()
const editedAt = useFormattedDateTime(props.editedAt)
</script>
<template>
<CommonTooltip :content="`Edited ${editedAt}`">
<time :title="props.editedAt" :datetime="props.editedAt" underline decoration-dashed>&nbsp;*</time>
</CommonTooltip>
</template>