[Vuejs]-How to use Vee-Validate's setFieldValue with nested objects?

0👍

I struggled with the same question. It turns out it is quite simple. Just nest as you would any js object.

setFieldValue({
  branding: {
    name: 'your typed value'
  }
})

Leave a comment