mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-29 16:36:44 +01:00
993b40201c
* New FAQ, new renderer * Push blog stuff * Fix blog posts * Add tutorial to be rendered * Update documentation/content/blog/2023-03-09-zero-config-type-safety.md Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update documentation/content/blog/2023-03-09-zero-config-type-safety.md Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Revamp a lot of renderer, make it (soft) compatible with sveltekit * Remove markdown types * Clean up faq +page * Document stuff * Make the options more explicity * chore(site-2): Restructure docs pt 2 (#8604) * Push * Update readme * Push * inor accessibility fix * minr stuff * Add prepare * Run prettier * Remove test script * pnpm update * Update sites/svelte.dev/src/routes/examples/[slug]/+page.svelte Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update sites/svelte.dev/package.json Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
50 lines
991 B
Svelte
50 lines
991 B
Svelte
<script>
|
|
let scoops = 1;
|
|
let flavours = ['Mint choc chip'];
|
|
|
|
let menu = ['Cookies and cream', 'Mint choc chip', 'Raspberry ripple'];
|
|
|
|
function join(flavours) {
|
|
if (flavours.length === 1) return flavours[0];
|
|
return `${flavours.slice(0, -1).join(', ')} and ${flavours[flavours.length - 1]}`;
|
|
}
|
|
</script>
|
|
|
|
<h2>Size</h2>
|
|
|
|
<label>
|
|
<input type="radio" bind:group={scoops} value={1} />
|
|
One scoop
|
|
</label>
|
|
|
|
<label>
|
|
<input type="radio" bind:group={scoops} value={2} />
|
|
Two scoops
|
|
</label>
|
|
|
|
<label>
|
|
<input type="radio" bind:group={scoops} value={3} />
|
|
Three scoops
|
|
</label>
|
|
|
|
<h2>Flavours</h2>
|
|
|
|
{#each menu as flavour}
|
|
<label>
|
|
<input type="checkbox" bind:group={flavours} value={flavour} />
|
|
{flavour}
|
|
</label>
|
|
{/each}
|
|
|
|
{#if flavours.length === 0}
|
|
<p>Please select at least one flavour</p>
|
|
{:else if flavours.length > scoops}
|
|
<p>Can't order more flavours than scoops!</p>
|
|
{:else}
|
|
<p>
|
|
You ordered {scoops}
|
|
{scoops === 1 ? 'scoop' : 'scoops'}
|
|
of {join(flavours)}
|
|
</p>
|
|
{/if}
|