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

@ -0,0 +1,9 @@
import type { MaybeRef } from '@vueuse/core'
export const useFormattedDateTime = (
value: MaybeRef<string | Date>,
options: Intl.DateTimeFormatOptions = { dateStyle: 'long', timeStyle: 'medium' },
) => {
const formatter = Intl.DateTimeFormat(undefined, options)
return computed(() => formatter.format(new Date(resolveUnref(value))))
}