blob: 8c6177912eb138201d4bb5a2e046973d70d30fac [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;
6 }
7 }
8};
9
10export default VuelidateMixin;