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/packages/svelte/tests/server-side-rendering/samples/input-default-value/main.svelte

11 lines
326 B

<script>
const props = { defaultValue: 'spread', defaultChecked: true };
</script>
<input defaultValue="hello" />
<input type="checkbox" defaultChecked />
<input {...props} />
<input {...props} value="" checked={false} />
<input value="" checked={false} {...props} />
<input {...props} {...{ VALUE: '', CHECKED: false }} />