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

Add alternate syntax examples to the migration guide #186

Open
wants to merge 1 commit into
base: master
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
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ You can find the README of the old version [here](https://github.com/DockYard/em

{{! new }}
<input value={{myValue}} oninput={{action (mut myValue) value="target.value"}}>

{{! alternate syntax }}
{{input value=(readonly myValue) input=(action (mut myValue) value="target.value")}}
```

### one-way-textarea
Expand All @@ -39,6 +42,9 @@ You can find the README of the old version [here](https://github.com/DockYard/em

{{! new }}
<textarea value={{myValue}} oninput={{action (mut myValue) value="target.value"}}></textarea>

{{! alternate syntax }}
{{textarea value=(readonly myValue) input=(action (mut myValue) value="target.value")}}
```

### one-way-checkbox
Expand All @@ -49,6 +55,9 @@ You can find the README of the old version [here](https://github.com/DockYard/em

{{! new }}
<input type="checkbox" checked={{myValue}} onclick={{action (mut myValue) value="target.checked"}}>

{{! alternate syntax }}
{{input type="checkbox" checked=(readonly myValue) click=(action (mut myValue) value="target.checked")}}
```

### one-way-radio
Expand Down