Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
webui-vue
/
c45cfe5c5e4a15f939ae35c1f61496adb1320125
/
.
/
src
/
components
/
Mixins
/
VuelidateMixin.js
blob: fec8525186fff2078a71acfa5c51d3937fe735b1 [
file
] [
log
] [
blame
]
const
VuelidateMixin
=
{
methods
:
{
getValidationState
(
model
)
{
const
{
$dirty
,
$error
}
=
model
;
return
$dirty
?
!
$error
:
null
;
},
},
};
export
default
VuelidateMixin
;