Clean up docs

This commit is contained in:
Filipa Lacerda 2018-03-01 11:14:08 +00:00
parent edbf6204c0
commit 30264317eb
No known key found for this signature in database
GPG Key ID: 9CA3FDE4D1E2F1C8
1 changed files with 0 additions and 8 deletions

View File

@ -571,12 +571,6 @@ When using `v-for` you need to provide a *unique* `:key` attribute for each item
</div>
```
1. When using `v-for` with `template` the child item needs a `:key` attribute, since Vue doesn't allow for the `:key` to be in the `template` element.
```html
<template v-for="(item, index) in items">
<span :key="index"></span>
</template>
```
1. When using `v-for` with `template` and there is more than one child element, the `:key` values must be unique. It's advised to use `kebab-case` namespaces.
```html
@ -600,8 +594,6 @@ When using `v-for` you need to provide a *unique* `:key` attribute for each item
</span>
</div>
```
* Do not reuse the parent `:key` in the nested `v-for`
Useful links: