summaryrefslogtreecommitdiff
path: root/src/components/_sila/Mixins/VuelidateMixin.js
blob: fec8525186fff2078a71acfa5c51d3937fe735b1 (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;