xref: /openbmc/webui-vue/src/components/Mixins/VuelidateMixin.js (revision 602e98aa32f82fd3b0c3d250c7cc1f8da971db24)
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