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