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/06-lifecycle/01-ondestroy/App.svelte

13 lines
210 B

<script>
import { onInterval } from './utils.js';
let seconds = 0;
onInterval(() => (seconds += 1), 1000);
</script>
<p>
The page has been open for
{seconds}
{seconds === 1 ? 'second' : 'seconds'}
</p>