xref: /openbmc/webui-vue/src/components/Mixins/VuelidateMixin.js (revision 4b0fc1dbb3f60a485d3ba7ec27d7654a8ea0d382)
1const VuelidateMixin = {
2  methods: {
3    getValidationState(model) {
4      const { $dirty, $error } = model;
5      return $dirty ? !$error : null;
6    }
7  }
8};
9
10export default VuelidateMixin;
11