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