parsley/app/javascript/components/AppValidationErrors.vue

21 lines
340 B
Vue
Raw Normal View History

2018-06-09 12:36:46 -05:00
<template>
<div>
<div class="notification is-danger" v-if="errors !== null" v-for="(errs, prop) in errors">
{{ prop }}: {{ errs.join(", ") }}
</div>
</div>
</template>
<script>
export default {
props: {
errors: {
required: false,
type: Object,
default: {}
}
}
}
</script>