1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 08:59:59 +01:00
elk/components/status/StatusEditIndicator.vue
2022-11-25 16:34:53 +00:00

12 lines
337 B
Vue

<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>