# Validation Errors
This component will render a list of validation errors.
Made to be used with [ember-cp-validations](https://github.com/offirgolan/ember-cp-validations).

## Usage
### To display an existing error messages array
```handlebars
{{validation-errs messages=someArrayOfMessages}}
```

### To display validation error messages for a prop on the current context (e.g. controller, component)
```handlebars
{{validation-errs prop='thePropName'}}
```

### To display validation error messages for a prop on some object
```handlebars
{{validation-errs model=theObject prop='thePropName'}}
```
