We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
URL : https://github.com/asciidwango/js-primer/blob/master/source/use-case/todoapp/final/README.md
最終的なsrc/App.jsにて、handleAdd関数を定義しているのに、mount()内でこれを使っていないようです。
src/App.js
handleAdd
mount()
formElement.addEventListener("submit", (event) => { event.preventDefault(); this.todoListModel.addTodo(new TodoItemModel({ title: inputElement.value, completed: false })); inputElement.value = ""; });
の部分は、以下のようにすべきかと思います。
formElement.addEventListener("submit", (event) => { event.preventDefault(); this.handleAdd(inputElement.value); inputElement.value = ""; });
The text was updated successfully, but these errors were encountered:
fix(todo): JSDocのdestructuringの記法を修正
06776ba
この書籍の主題ではないので、できるだけコンパクトな方法を採用 - microsoft/TypeScript#24045 - google/closure-compiler#1781 - microsoft/TypeScript#24746 fix #606
feat(todo): Todoアプリの課題を追加 (#620)
86a7ceb
* fix(todo): JSDocのdestructuringの記法を修正 この書籍の主題ではないので、できるだけコンパクトな方法を採用 - microsoft/TypeScript#24045 - google/closure-compiler#1781 - microsoft/TypeScript#24746 fix #606 * fix(todo): removeEventListerを削除 TODOアプリのユースケースでは解除まで行っていないので削除する fix #607 * feat(todo): 残った課題を追加 * chore(todo): add comment * fix(todo): add <!-- doctest:disable -->
azu
Successfully merging a pull request may close this issue.
URL : https://github.com/asciidwango/js-primer/blob/master/source/use-case/todoapp/final/README.md
最終的な
src/App.js
にて、handleAdd
関数を定義しているのに、mount()
内でこれを使っていないようです。の部分は、以下のようにすべきかと思います。
The text was updated successfully, but these errors were encountered: