feat: show full created time in tooltip

This commit is contained in:
三咲智子 2022-11-25 16:57:34 +08:00
parent ff81389404
commit 6c350faf7c
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
3 changed files with 16 additions and 5 deletions

View file

@ -11,8 +11,7 @@ const status = $computed(() => {
return props.status
})
const formatter = Intl.DateTimeFormat(undefined, { dateStyle: 'long' })
const date = computed(() => formatter.format(new Date(status.createdAt)))
const date = useFormattedDateTime(status.createdAt)
</script>
<template>