Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
webui-vue
/
602e98aa32f82fd3b0c3d250c7cc1f8da971db24
/
.
/
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
;