blob: 8c6177912eb138201d4bb5a2e046973d70d30fac [file] [log] [blame]
const VuelidateMixin = {
methods: {
getValidationState(model) {
const { $dirty, $error } = model;
return $dirty ? !$error : null;
}
}
};
export default VuelidateMixin;