mirror of https://github.com/sveltejs/svelte
13 lines
361 B
13 lines
361 B
<script>
|
|
let tortilla = 'Plain';
|
|
let fillings = ['Cheese'];
|
|
</script>
|
|
|
|
<div>{fillings.toString()}</div>
|
|
|
|
<input type="radio" bind:group={tortilla} value="Plain">
|
|
<input type="radio" bind:group={tortilla} value="Whole wheat">
|
|
|
|
<input type="checkbox" bind:group={fillings} value="Beans">
|
|
<input type="checkbox" bind:group={fillings} value="Cheese">
|