mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-21 14:55:04 +00:00
7 lines
126 B
Svelte
7 lines
126 B
Svelte
<script>
|
|
const list = Array(20).fill().map((_, i) => i + 1);
|
|
</script>
|
|
|
|
{#each list as a}
|
|
<a href="boom/{a}">{a}</a>
|
|
{/each} |