refactor(account): improve joined time format
This commit is contained in:
parent
1194d56d09
commit
b656c6fda2
2 changed files with 7 additions and 6 deletions
|
@ -5,10 +5,11 @@ const { account } = defineProps<{
|
|||
account: Account
|
||||
}>()
|
||||
|
||||
const createdAt = $computed(() => {
|
||||
const date = new Date(account.createdAt)
|
||||
return new Intl.DateTimeFormat('en-US', { month: 'long', day: 'numeric', year: 'numeric' }).format(date)
|
||||
})
|
||||
const createdAt = $(useFormattedDateTime(() => account.createdAt, {
|
||||
month: 'long',
|
||||
day: 'numeric',
|
||||
year: 'numeric',
|
||||
}))
|
||||
|
||||
const fields = $computed(() => {
|
||||
return [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue