summaryrefslogtreecommitdiff
path: root/src/components/Mixins/VuelidateMixin.js
blob: 8c6177912eb138201d4bb5a2e046973d70d30fac (plain)
1
2
3
4
5
6
7
8
9
10
const VuelidateMixin = {
  methods: {
    getValidationState(model) {
      const { $dirty, $error } = model;
      return $dirty ? !$error : null;
    }
  }
};

export default VuelidateMixin;