* Adds support form FormulateError form errors * Adds support for form-errors prop Also includes tests for both named-form-errors as well, form-errors prop, positioning form errors with the <FormulateErrors /> component, and allowing multiple <FormulateErrors /> * Adds form error support, error handling, and supporting tests * Remove unused util functions * fixes bug that resulted in validation failing if run more than once Credit to @luan-nk-nguyen for discovering the bug Co-authored-by: Andrew Boyd <andrew@wearebraid.com>
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
/**
|
|
* The default backend error handler assumes a failed axios instance. You can
|
|
* easily override this function with fetch. The expected output is defined
|
|
* on the documentation site vueformulate.com.
|
|
*/
|
|
export default function (err) {
|
|
if (typeof err === 'object' && err.response) {
|
|
|
|
}
|
|
return {}
|
|
}
|