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