mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 10:51:36 +01:00
17 lines
397 B
Svelte
17 lines
397 B
Svelte
<script lang="ts">
|
|
const { date }: { date: Date } = $props();
|
|
|
|
const options: Intl.DateTimeFormatOptions = {
|
|
year: "numeric",
|
|
month: "2-digit",
|
|
day: "2-digit",
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
second: "2-digit"
|
|
};
|
|
</script>
|
|
|
|
<time datetime={new Date(date).toLocaleString("sv").replace(" ", "T")}>
|
|
{new Date(date).toLocaleString("en-us", { ...options })}
|
|
</time>
|