svelte/documentation/tutorial/06-bindings/01-text-inputs/app-a/App.svelte

8 lines
88 B

<script>
let name = 'world';
</script>
<input value={name} />
<h1>Hello {name}!</h1>