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