mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
10 lines
344 B
TypeScript
10 lines
344 B
TypeScript
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))))
|
|
}
|