diff --git a/src/guide/list.md b/src/guide/list.md index 6ac92074..7ae2953c 100644 --- a/src/guide/list.md +++ b/src/guide/list.md @@ -1,8 +1,8 @@ -# List Rendering +# リストレンダリング -## Mapping an Array to Elements with `v-for` +## v-for で配列に要素をマッピングする -We can use the `v-for` directive to render a list of items based on an array. The `v-for` directive requires a special syntax in the form of `item in items`, where `items` is the source data array and `item` is an **alias** for the array element being iterated on: +配列に基づいて、アイテムのリストを描画するために、`v-for` ディレクティブを使用することができます。 `v-for` ディレクティブには、 `item in items` の形式の特別な構文が必要で、 `items` はソースデータの配列、 `item` は繰り返される配列要素の**エイリアス**です: ```html