Menu
×
×
Correct!
Exercise:When generating elements with v-for, which specific attribute is always recommended to use?
<fish-type
v-for="x in fish"
:@(3)="x.id"
:fish-name="x.name"
:img-url="x.url"
/>
<fish-type
v-for="x in fish"
:key="x.id"
:fish-name="x.name"
:img-url="x.url"
/>
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 54 exercises.
Are you sure you want to continue?