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/test/runtime/samples/binding-input-group-each-13/main.svelte

11 lines
215 B

<script>
let name = 'world';
let current = '';
</script>
<input type="radio" name="current" bind:group={current} value={name}>
<input type="text" bind:value={current} />
<input type="text" bind:value={name} />