diff --git a/7-vue/README.md b/7-vue/README.md index 7cefdeeb..1f79f98b 100644 --- a/7-vue/README.md +++ b/7-vue/README.md @@ -410,7 +410,7 @@ You can see an empty card with a 'Delete' button right after the current dog vie To render a list of items based on an array Vue has a `v-for` directive, which will iterate through this array and render each item. Let's add this directive to our opening `v-flex` element that will show the array of favorite cards in the new container you just added: ```html - + ``` Here `pet` is the reference to the _current array element_ and `index` is the _index of this element_ inside the array.