blob: fec8525186fff2078a71acfa5c51d3937fe735b1 [file] [log] [blame]
Yoshie Muranaka4b0fc1d2020-01-06 07:36:16 -08001const VuelidateMixin = {
2 methods: {
3 getValidationState(model) {
4 const { $dirty, $error } = model;
5 return $dirty ? !$error : null;
Derick Montague602e98a2020-10-21 16:20:00 -05006 },
7 },
Yoshie Muranaka4b0fc1d2020-01-06 07:36:16 -08008};
9
10export default VuelidateMixin;