Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

01-svelte/06-bindings/03-checkbox-inputs #116

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Checkbox inputs
title: 체크박스 입력
---

Checkboxes are used for toggling between states. Instead of binding to `input.value`, we bind to `input.checked`:
체크박스는 상태 간 전환에 사용됩니다. `input.value` 대신 `input.checked`에 바인딩합시다.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

토글의 단어 의미 생각하면 껐다 켰다 하는 거라 전호나 보다는 더 좁은 의미로 번역해야 할 것 같습니다. 좋은 아이디어 있을까요?


```svelte
/// file: App.svelte
Expand Down