mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 17:39:59 +00:00
12 lines
337 B
Vue
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> *</time>
|
||
|
</CommonTooltip>
|
||
|
</template>
|