Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <template lang="pug"> BaseAnimationGroup.col-12.m-0.b-alerts(:appear='true' anim='height') .alert.alert-warning.small.px-1.py-0.mx-1.mb-1(v-if='showErrors' v-for="(message, key) in warnings" :key="'b-warn-' + key") {{ message }} .alert.alert-danger.small.px-1.py-0.mx-1.mb-1(v-if='showErrors' v-for="(message, key) in errors" :key="'b-err-' + key") {{ message }} </template> <script> export { default } from "./InputError.vue.js"; </script> |