You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/examples/07-stores/02-readable-stores/App.svelte

13 lines
232 B

<script>
import { time } from './stores.js';
const formatter = new Intl.DateTimeFormat('fr', {
hour12: true,
hour: 'numeric',
minute: '2-digit',
second: '2-digit'
});
</script>
<h1>Il est {formatter.format($time)}</h1>