Skip to main content

Thẻ <textarea> hoạt động khá giống với một ô nhập văn bản trong Svelte — dùng bind:value:

App.svelte
<textarea bind:value={value}></textarea>

Trong những trường hợp này, nếu tên thuộc tính giống nhau, ta có thể viết một các ngắn gọn hơn:

App.svelte
<textarea bind:value></textarea>

Điều này áp dùng cho các phép bind khác, không chỉ textarea.

Tiếp theo: Lifecycle

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<script>
	import { marked } from 'marked';
	let value = `Một vài từ có chữ *nghiêng*, vài cái thì **đậm**\n\n- danh\n- sách\n- rất\n- tuyệt`;
</script>
 
<div class="grid">
	input
	<textarea {value}></textarea>
 
	output
	<div>{@html marked(value)}</div>
</div>
 
<style>
	.grid {
		display: grid;
		grid-template-columns: 5em 1fr;
		grid-template-rows: 1fr 1fr;
		grid-gap: 1em;
		height: 100%;
	}
 
	textarea {
		flex: 1;
		resize: none;
	}
</style>
 
initialising