vee-validate
vee-validate copied to clipboard
Mix of Nested objects and Avoiding nesting
Hello,
according to docs https://vee-validate.logaretm.com/v4/guide/composition-api/nested-objects-and-arrays/ we can use nested objects OR avoid nesting for dot notation. But what if use it both?
Example payload:
{
nested: {
field: "value 1",
metadata: {
dotted.field: "value 2"
}
}
}
Is it could be possible to specify path like nested.metadata.[dotted.field]
?