[SVELTE]Bindings- Text inputs, Numeric inputs, Checkbox inputs, Group inputs, Textarea inputs, Select multiple, Contenteditable bindings, Each block bindings, Media elements, Dimensions, This, Component bindings, Binding to component instance
Bindings 1. Text inputsbind:value 지시어를 사용할 수 있다. name 값을 변경하면 입력 값이 업데이트될 뿐만 아니라 입력 값이 변경되면 name도 업데이트된다.Hello {name}! 2. Numberic inputs {a} + {b} = {a + b} 3. Checkbos inputs Yes! Send me regular email spam{#if yes} Thank you. We will bombard your inbox and sell your personal details.{:else} You must opt-in to continue. If you're not paying, you're the product.{/if}..
2023. 3. 8.