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/03-derived-stores/App.svelte

19 lines
335 B

<script>
import { time, elapsed } from './stores.js';
const formatter = new Intl.DateTimeFormat('en', {
hour12: true,
hour: 'numeric',
minute: '2-digit',
second: '2-digit'
});
</script>
<h1>Il est {formatter.format($time)}</h1>
<p>
Cette page est ouverte depuis
{$elapsed}
{$elapsed > 1 ? 'secondes' : 'seconde'}
</p>