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/site/content/tutorial/06-bindings/05-textarea-inputs/text.md

17 lines
438 B

---
title: Textarea inputs
---
The `<textarea>` element behaves similarly to a text input in Svelte — use `bind:value` to create a two-way binding between the `<textarea>` content and the `value` variable:
```html
<textarea bind:value={value}></textarea>
```
In cases like these, where the names match, we can also use a shorthand form:
```html
<textarea bind:value></textarea>
```
This applies to all bindings, not just textareas.