Skip to content

Update forms.md #753

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

Merged
merged 2 commits into from
Mar 5, 2018
Merged
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
4 changes: 2 additions & 2 deletions src/v2/guide/forms.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: フォーム入力バインディング
updated: 2017-12-14
updated: 2018-03-05
type: guide
order: 10
---
Expand Down Expand Up @@ -298,7 +298,7 @@ radio 、 checkbox 、そして select オプションは、 `v-model` バイン
<!-- `toggle` は true かまたは false のどちらかです -->
<input type="checkbox" v-model="toggle">

<!-- 選択されたとき、`selected` は文字列"abc"です -->
<!-- 最初のオプションが選択されたとき、`selected` は文字列"abc"です -->
<select v-model="selected">
<option value="abc">ABC</option>
</select>
Expand Down