We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ab6894 commit 80ecf31Copy full SHA for 80ecf31
src/formGenerator.vue
@@ -14,7 +14,7 @@ div
14
button(v-for='btn in field.buttons', @click='btn.onclick(model, field)', :class='btn.classes') {{ btn.label }}
15
.hint(v-if='field.hint') {{ field.hint }}
16
.errors(v-if='errorsVisibility(field)')
17
- span(v-for='error in field.errors', track-by='$index') {{ error }}
+ span(v-for='(error, index) in field.errors', track-by='index') {{ error }}
18
</template>
19
20
<script>
0 commit comments